3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-07 06:44:16 +00:00

Bump language level to java 6 in the pom and fix the ToyWallet demo.

This commit is contained in:
Mike Hearn 2013-03-19 15:40:52 +01:00
parent b7eab44990
commit 57b3fb4368
2 changed files with 8 additions and 3 deletions

View File

@ -42,5 +42,10 @@
<artifactId>slf4j-jdk14</artifactId>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.167</version>
</dependency>
</dependencies>
</project>

View File

@ -116,14 +116,14 @@
<build>
<pluginManagement>
<plugins>
<!-- Ensure compilation is done under Java 5 for backwards compatibility -->
<!-- Ensure compilation is done under Java 6 for backwards compatibility -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.6</source>
<target>1.6</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>