Skip to content

Commit

Permalink
DOCKER-450 [Update] postgres v13 to v15 official image
Browse files Browse the repository at this point in the history
  * [Remove] jackson library
  • Loading branch information
codingBenVdS committed May 31, 2024
1 parent d1425b8 commit c408540
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions 2repository/23.1/community-23.1.0/overload.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ ext {
]
solrimage = 'docker.io/xenit/alfresco-solr6:2.0.8.2'
shareimage = 'docker.io/xenit/alfresco-share-community:23.1.0'
// 13,14,15 are supported
psqlimage = 'docker.io/xenit/postgres:13'
psqlimage = 'postgres:15'
tests = true
alfrescoBomVersion='23.1.0'
}
Expand Down
2 changes: 1 addition & 1 deletion 2repository/23.1/enterprise-23.1.0/overload.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ext {
]
solrimage = 'docker.io/xenit/alfresco-solr6:2.0.8.2'
shareimage = 'docker.io/xenit/alfresco-share-community:23.1.0'
psqlimage = 'docker.io/xenit/postgres:13'
psqlimage = 'postgres:15'
tests = true
alfrescoBomVersion = '23.1.0'
}
Expand Down
2 changes: 1 addition & 1 deletion 2repository/23.2/community-23.2.0/overload.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ext {
]
solrimage = 'docker.io/xenit/alfresco-solr6:2.0.8.2'
shareimage = 'docker.io/xenit/alfresco-share-community:23.2.0'
psqlimage = 'docker.io/xenit/postgres:13'
psqlimage = 'postgres:15'
tests = true
alfrescoBomVersion='23.2.0'
}
Expand Down
2 changes: 1 addition & 1 deletion 2repository/23.2/enterprise-23.2.0/overload.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ext {
]
solrimage = 'docker.io/xenit/alfresco-solr6:2.0.8.2'
shareimage = 'docker.io/xenit/alfresco-share-community:23.2.0'
psqlimage = 'docker.io/xenit/postgres:13'
psqlimage = 'postgres:15'
tests = true
alfrescoBomVersion = '23.2.0'
}
Expand Down
2 changes: 1 addition & 1 deletion tomcat-base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ subprojects {
implementation "org.apache.tomcat:tomcat-jasper-el:${tomcatVersion}"
implementation "org.apache.tomcat:tomcat-jsp-api:${tomcatVersion}"
implementation "eu.xenit.logging:json-logging:${jsonLoggingVersion}"
implementation "com.fasterxml.jackson.core:jackson-databind:2.15.3"
// implementation "com.fasterxml.jackson.core:jackson-databind:2.15.3"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0"
testImplementation("org.junit-pioneer:junit-pioneer:2.1.0")
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,6 @@ public static void createSSLConnector(Tomcat tomcat, AlfrescoConfiguration alfre
);

SSLHostConfig sslHostConfig = new SSLHostConfig();
// This is deprecated in Tomcat 9 and deleted from Tomcat V10.1!
// sslHostConfig.setCertificateKeystoreFile(alfrescoConfiguration.getTomcatSSLKeystore());
// sslHostConfig.setCertificateKeystorePassword(alfrescoConfiguration.getTomcatSSLKeystorePassword());
// sslHostConfig.setCertificateKeystoreType("JCEKS");
SSLHostConfigCertificate sslHostConfigCertificate = new SSLHostConfigCertificate(sslHostConfig, SSLHostConfigCertificate.Type.UNDEFINED);
sslHostConfigCertificate.setCertificateKeystoreFile(alfrescoConfiguration.getTomcatSSLKeystore());
sslHostConfigCertificate.setCertificateKeystorePassword(alfrescoConfiguration.getTomcatSSLKeystorePassword());
Expand Down

0 comments on commit c408540

Please sign in to comment.