From 5dfcad57f81d11875dd12db36391f0eadb89dd24 Mon Sep 17 00:00:00 2001 From: robfrank Date: Sat, 16 May 2020 16:01:30 +0200 Subject: [PATCH] adds enable-previews flag cor both compiler and surefire --- pom.xml | 475 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 241 insertions(+), 234 deletions(-) diff --git a/pom.xml b/pom.xml index de1a0b5..4922923 100644 --- a/pom.xml +++ b/pom.xml @@ -4,257 +4,264 @@ --> - 4.0.0 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + 4.0.0 - it.robfrank - testcontainers-examples - jar - 1.0-SNAPSHOT + it.robfrank + testcontainers-examples + jar + 1.0-SNAPSHOT - - UTF-8 - 14 - 14 - 14 + + UTF-8 + 14 + 14 + 14 - 1.3.72 - 5.6.2 - 3.16.1 - 3.4.0 + 1.3.72 + 5.6.2 + 3.16.1 + 3.4.0 - 1.14.2 - 42.2.12 - 3.141.59 - 3.0.31 + 1.14.2 + 42.2.12 + 3.141.59 + 3.0.31 - 1.8 - 3.10 + 1.8 + 3.10 - 1.8 - 2.6 - 29.0-jre - 1.2.3 - 1.7.30 - 2.22.2 - 3.8.1 - + 1.8 + 2.6 + 29.0-jre + 1.2.3 + 1.7.30 + 2.22.2 + 3.8.1 + - - - - kotlin-maven-plugin - org.jetbrains.kotlin - ${kotlin.version} - - - compile - - compile - - - - ${project.basedir}/src/main/kotlin - ${project.basedir}/src/main/java - - - - - test-compile - - test-compile - - - - ${project.basedir}/src/test/kotlin - ${project.basedir}/src/test/java - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven-compiler-plugin.version} - - - - default-compile - none - - - - default-testCompile - none - - - java-compile - compile - - compile - - - - java-test-compile - test-compile - - testCompile - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${maven-surefire-plugin.version} - - - - - - - + + + + kotlin-maven-plugin + org.jetbrains.kotlin + ${kotlin.version} + + + compile + + compile + + + + ${project.basedir}/src/main/kotlin + ${project.basedir}/src/main/java + + + + + test-compile + + test-compile + + + + ${project.basedir}/src/test/kotlin + ${project.basedir}/src/test/java + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + 14 + --enable-preview + + + + + default-compile + none + + + + default-testCompile + none + + + java-compile + compile + + compile + + + + java-test-compile + test-compile + + testCompile + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + --enable-preview + + + + + + + + - - org.junit.jupiter - junit-jupiter-engine - ${junit.jupiter.version} - test - - - org.junit.jupiter - junit-jupiter-params - ${junit.jupiter.version} - test - - - org.junit.jupiter - junit-jupiter-api - ${junit.jupiter.version} - test - + + org.junit.jupiter + junit-jupiter-engine + ${junit.jupiter.version} + test + + + org.junit.jupiter + junit-jupiter-params + ${junit.jupiter.version} + test + + + org.junit.jupiter + junit-jupiter-api + ${junit.jupiter.version} + test + - - org.assertj - assertj-core - ${assertj-core.version} - test - - - org.assertj - assertj-guava - ${assertj-guava.version} - test - + + org.assertj + assertj-core + ${assertj-core.version} + test + + + org.assertj + assertj-guava + ${assertj-guava.version} + test + - - org.testcontainers - testcontainers - ${testcontainers.version} - test - + + org.testcontainers + testcontainers + ${testcontainers.version} + test + - - org.apache.commons - commons-csv - ${commons-csv.version} - - - org.apache.commons - commons-lang3 - ${commons-lang3.version} - - - org.apache.commons - commons-text - ${commons-text.version} - - - commons-io - commons-io - ${commons-io.version} - - - com.google.guava - guava - ${guava.version} - + + org.apache.commons + commons-csv + ${commons-csv.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + org.apache.commons + commons-text + ${commons-text.version} + + + commons-io + commons-io + ${commons-io.version} + + + com.google.guava + guava + ${guava.version} + - - org.testcontainers - junit-jupiter - ${testcontainers.version} - test - - - org.testcontainers - postgresql - ${testcontainers.version} - test - - - org.testcontainers - mysql - ${testcontainers.version} - test - - - org.testcontainers - orientdb - ${testcontainers.version} - test - - - org.seleniumhq.selenium - selenium-remote-driver - ${selenium-remote-driver.version} - test - - - org.testcontainers - selenium - ${testcontainers.version} - test - + + org.testcontainers + junit-jupiter + ${testcontainers.version} + test + + + org.testcontainers + postgresql + ${testcontainers.version} + test + + + org.testcontainers + mysql + ${testcontainers.version} + test + + + org.testcontainers + orientdb + ${testcontainers.version} + test + + + org.seleniumhq.selenium + selenium-remote-driver + ${selenium-remote-driver.version} + test + + + org.testcontainers + selenium + ${testcontainers.version} + test + - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - ${kotlin.version} - - - org.jetbrains.kotlin - kotlin-reflect - ${kotlin.version} - + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + ${kotlin.version} + + + org.jetbrains.kotlin + kotlin-reflect + ${kotlin.version} + - - org.postgresql - postgresql - ${postgresql.version} - + + org.postgresql + postgresql + ${postgresql.version} + - - com.orientechnologies - orientdb-client - ${orientdb-client.version} - + + com.orientechnologies + orientdb-client + ${orientdb-client.version} + - - ch.qos.logback - logback-classic - ${logback-classic.version} - - - org.slf4j - slf4j-api - ${slf4j-api.version} - + + ch.qos.logback + logback-classic + ${logback-classic.version} + + + org.slf4j + slf4j-api + ${slf4j-api.version} + - +