Browse Source

Increase java version from 1.7 to 8 for compatibility with other pom's (#3816)

* Increse the java version from 7 to 8 to compatible pom's
pull/3825/head
mandlil 10 months ago
committed by GitHub
parent
commit
33a009a078
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
5 changed files with 12 additions and 13 deletions
  1. +2
    -3
      java/pom.xml
  2. +2
    -2
      tools/java/common/pom.xml
  3. +2
    -2
      tools/java/cpp-build/pom.xml
  4. +3
    -3
      tools/java/data/pom.xml
  5. +3
    -3
      tools/java/java-build/pom.xml

+ 2
- 3
java/pom.xml View File

@ -109,7 +109,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.15</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
@ -168,8 +167,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>8</source>
<target>8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>


+ 2
- 2
tools/java/common/pom.xml View File

@ -31,8 +31,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>8</source>
<target>8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>


+ 2
- 2
tools/java/cpp-build/pom.xml View File

@ -27,8 +27,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>8</source>
<target>8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>


+ 3
- 3
tools/java/data/pom.xml View File

@ -47,10 +47,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<version>3.11.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>8</source>
<target>8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>


+ 3
- 3
tools/java/java-build/pom.xml View File

@ -47,10 +47,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<version>3.11.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>8</source>
<target>8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>


Loading…
Cancel
Save