3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-14 19:25:51 +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
script:
- mvn -q clean install -Pno-network
- jdk_switcher use openjdk6
- jdk_switcher use openjdk7
- cd core
- mvn -q clean package -Pno-network

View File

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