diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2019-03-13 22:35:35 +0200 |
---|---|---|
committer | Decebal Suiu <decebal.suiu@gmail.com> | 2019-03-13 22:35:35 +0200 |
commit | ce81809c526926799a3ac323b7f6ee509c3ee3b8 (patch) | |
tree | 1493a1c364a83241f53d3643f95d91c46b0b5819 | |
parent | 4eeaf8ab558da4a6974e4cb5deccc57c32d620f9 (diff) | |
download | pf4j-ce81809c526926799a3ac323b7f6ee509c3ee3b8.tar.gz pf4j-ce81809c526926799a3ac323b7f6ee509c3ee3b8.zip |
Development is done on Java 11 (OpenJDK)
-rw-r--r-- | .travis.yml | 4 | ||||
-rw-r--r-- | pom.xml | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 90b2770..b2e4fb7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,5 @@ language: java jdk: - - openjdk7 -# JDK7 is not supported anymore; https://github.com/travis-ci/travis-ci/issues/7884#issuecomment-308451879 -# - oraclejdk7 - - oraclejdk8 - openjdk11 after_success: - mvn clean cobertura:cobertura coveralls:report @@ -43,7 +43,9 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <java.version>1.7</java.version> + <maven.compiler.target>1.8</maven.compiler.target> + <maven.compiler.source>1.8</maven.compiler.source> + <slf4j.version>1.7.25</slf4j.version> <asm.version>7.1</asm.version> @@ -66,8 +68,6 @@ <version>3.8.0</version> <configuration> <showWarnings>true</showWarnings> - <source>${java.version}</source> - <target>${java.version}</target> </configuration> </plugin> |