Support JDK19 Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
diff --git a/etc/jenkins/Jenkinsfile_ci_build b/etc/jenkins/Jenkinsfile_ci_build index 7c3f9ff..a42997b 100644 --- a/etc/jenkins/Jenkinsfile_ci_build +++ b/etc/jenkins/Jenkinsfile_ci_build
@@ -32,12 +32,12 @@ ''' } } - stage('JDK 16 ') { + stage('JDK 19 ') { agent { label 'centos-7' } tools { - jdk 'openjdk-jdk16-latest' + jdk 'openjdk-jdk19-latest' maven 'apache-maven-latest' } steps {
diff --git a/examples/groovy/pom.xml b/examples/groovy/pom.xml index 568f867..e6b1ca8 100644 --- a/examples/groovy/pom.xml +++ b/examples/groovy/pom.xml
@@ -28,7 +28,7 @@ <groupId>org.apache.groovy</groupId> <artifactId>groovy-all</artifactId> <type>pom</type> - <version>4.0.0-alpha-3</version> + <version>4.0.4</version> </dependency> <dependency> <groupId>org.glassfish.jersey.test-framework.providers</groupId>
diff --git a/tests/integration/property-check/pom.xml b/tests/integration/property-check/pom.xml index abe4c82..ec5920e 100644 --- a/tests/integration/property-check/pom.xml +++ b/tests/integration/property-check/pom.xml
@@ -109,4 +109,28 @@ </plugin> </plugins> </build> + + <profiles> + <profile> + <id>jdk19+</id> + <activation> + <jdk>[19,)</jdk> + </activation> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/SystemPropertiesConfigurationModelTest.java</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + </profile> + </profiles> </project>