3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-18 21:25:49 +00:00

Update core to Java7. We still need to target the Java6 API though, in order to stay compatible with Android.

This commit is contained in:
Andreas Schildbach 2016-11-14 20:26:25 +01:00
parent 6669d9032c
commit a06956c6e1
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ jdk: oraclejdk8
install: true # remove default install: true # remove default
script: script:
- mvn -q clean install -Pno-network - mvn -q clean install -Pno-network
- jdk_switcher use openjdk6 - jdk_switcher use openjdk7
- cd core - cd core
- mvn -q clean package -Pno-network - mvn -q clean package -Pno-network

View File

@ -116,8 +116,8 @@
<plugin> <plugin>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<configuration> <configuration>
<source>1.6</source> <source>1.7</source>
<target>1.6</target> <target>1.7</target>
</configuration> </configuration>
</plugin> </plugin>