Skip to content
This repository was archived by the owner on Jun 1, 2019. It is now read-only.

Commit 51f5e48

Browse files
committedJul 5, 2016
Force java 6.
1 parent 090d2e0 commit 51f5e48

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
 

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: java
22
jdk:
3-
- openjdk7
3+
- openjdk6
44

55
sudo: false
66

‎build.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
-->
3131
<property name="test.fork" value="true"/>
3232

33-
<!-- Force java 7 -->
34-
<property name="ant.build.javac.source" value="1.7" />
35-
<property name="ant.build.javac.target" value="1.7" />
33+
<!-- Force java 6 -->
34+
<property name="ant.build.javac.source" value="1.6" />
35+
<property name="ant.build.javac.target" value="1.6" />
3636

3737
<!-- define other variables -->
3838
<property name="javac.debug" value="on" />

‎pom-main.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<properties>
3838
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3939
<project.build.outputEncoding>UTF-8</project.build.outputEncoding>
40-
<jdk.version>1.7</jdk.version>
40+
<jdk.version>1.6</jdk.version>
4141
<!-- for substitution in ParserConfig.properties -->
4242
<compiler.date>${maven.build.timestamp}</compiler.date>
4343
<maven.build.timestamp.format>yyyy-MM-dd HH\:mm</maven.build.timestamp.format>
@@ -225,7 +225,7 @@
225225
<target>${jdk.version}</target>
226226
<encoding>${project.build.sourceEncoding}</encoding>
227227
<links>
228-
<link>http://docs.oracle.com/javase/7/docs/api/</link>
228+
<link>http://docs.oracle.com/javase/6/docs/api/</link>
229229
</links>
230230
<detectLinks>true</detectLinks>
231231
<excludePackageNames>*.gwt.*:*.testing.*:*.debugger.*:*.webservice.*:*.debugging.*:*.ant.*</excludePackageNames>

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
<properties>
118118
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
119119
<project.build.outputEncoding>UTF-8</project.build.outputEncoding>
120-
<jdk.version>1.7</jdk.version>
120+
<jdk.version>1.6</jdk.version>
121121
<junit.version>4.11</junit.version>
122122
</properties>
123123

0 commit comments

Comments
 (0)
This repository has been archived.