Repository: calcite-avatica Updated Branches: refs/heads/master d86f37228 -> d94935509
CALCITE-2655 - Enable Travis to test against JDK 12 Signed-off-by: Kevin Risden <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/calcite-avatica/repo Commit: http://git-wip-us.apache.org/repos/asf/calcite-avatica/commit/d9493550 Tree: http://git-wip-us.apache.org/repos/asf/calcite-avatica/tree/d9493550 Diff: http://git-wip-us.apache.org/repos/asf/calcite-avatica/diff/d9493550 Branch: refs/heads/master Commit: d94935509c62accbef3a0787290cd8faa381fbd7 Parents: d86f372 Author: Kevin Risden <[email protected]> Authored: Tue Nov 6 11:34:04 2018 -0500 Committer: Kevin Risden <[email protected]> Committed: Wed Nov 7 10:50:47 2018 -0500 ---------------------------------------------------------------------- .travis.yml | 1 + pom.xml | 10 ++++++---- 2 files changed, 7 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/calcite-avatica/blob/d9493550/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 786953f..053ef99 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,7 @@ language: java matrix: fast_finish: true include: + - env: IMAGE=maven:3-jdk-12 - env: IMAGE=maven:3-jdk-11 - env: IMAGE=maven:3-jdk-10 - env: IMAGE=maven:3-jdk-9 http://git-wip-us.apache.org/repos/asf/calcite-avatica/blob/d9493550/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 0a2d6af..03f8590 100644 --- a/pom.xml +++ b/pom.xml @@ -103,8 +103,8 @@ limitations under the License. <scott-data-hsqldb.version>0.1</scott-data-hsqldb.version> <servlet.version>4.0.1</servlet.version> <slf4j.version>1.7.25</slf4j.version> - <spotbugs.version>3.1.7</spotbugs.version> - <spotbugs-maven-plugin.version>3.1.6</spotbugs-maven-plugin.version> + <spotbugs.version>3.1.8</spotbugs.version> + <spotbugs-maven-plugin.version>3.1.8</spotbugs-maven-plugin.version> </properties> <issueManagement> <system>Jira</system> @@ -578,7 +578,8 @@ limitations under the License. <configuration> <threadCount>6</threadCount> <parallel>both</parallel> - <argLine>-Xmx1024m</argLine> + <!-- work around https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911925 --> + <argLine>-Xmx1024m -Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine> </configuration> </execution> <execution> @@ -604,7 +605,8 @@ limitations under the License. <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <argLine>-Xmx1536m -XX:MaxPermSize=256m -Duser.timezone=${user.timezone}</argLine> + <!-- work around https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911925 --> + <argLine>-Xmx1536m -XX:MaxPermSize=256m -Duser.timezone=${user.timezone} -Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine> </configuration> </plugin> <plugin>
