Skip to content

Commit

Permalink
Updated compile target to Java 7
Browse files Browse the repository at this point in the history
  • Loading branch information
jekh committed May 28, 2016
1 parent 6d8cdcd commit 409e723
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -2,7 +2,6 @@ sudo: false

language: java
jdk:
- openjdk6
- oraclejdk7
- oraclejdk8

Expand Down
11 changes: 6 additions & 5 deletions pom.xml
Expand Up @@ -16,6 +16,7 @@
<github.global.server>github</github.global.server>
<netty.version>4.0.36.Final</netty.version>
<slf4j.version>1.7.21</slf4j.version>
<java.version>1.7</java.version>
</properties>

<organization>
Expand Down Expand Up @@ -411,8 +412,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>UTF-8</encoding>
<!-- The following force compilation with full warnings. -->
<!--
Expand All @@ -430,7 +431,7 @@
<version>2.10.3</version>
<configuration>
<show>private</show>
<source>1.6</source>
<source>${java.version}</source>
<links>
<link>http://netty.io/4.0/api/</link>
</links>
Expand Down Expand Up @@ -521,7 +522,7 @@
<version>2.10.3</version>
<configuration>
<show>private</show>
<source>1.6</source>
<source>${java.version}</source>
<links>
<link>http://netty.io/4.0/api/</link>
</links>
Expand Down Expand Up @@ -580,7 +581,7 @@
<linkXRef>true</linkXRef>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
<targetJdk>1.6</targetJdk>
<targetJdk>${java.version}</targetJdk>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 409e723

Please sign in to comment.