Skip to content

Commit

Permalink
update compilation target to use Java 7
Browse files Browse the repository at this point in the history
  • Loading branch information
my-flow committed Feb 16, 2015
1 parent 815ef90 commit 9b12312
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ extension please visit the [project page]
(http://my-flow.github.io/paypalimporter/).

## Build Prerequisites
* Java Development Kit, version 6
* Java Development Kit, version 7
* [Apache Ant™](http://ant.apache.org), version 1.7 or newer

## Building the extension
Expand Down
12 changes: 6 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@


<target name="compile" depends="-prepare">
<javac source="1.6"
target="1.6"
<javac source="1.7"
target="1.7"
srcdir="${src}"
destdir="${build}"
debug="${debug}"
Expand Down Expand Up @@ -223,8 +223,8 @@
<fileset dir="${test-resources}" includes="*"/>
</copy>

<javac source="1.6"
target="1.6"
<javac source="1.7"
target="1.7"
srcdir="${test}"
destdir="${build}"
debug="${debug}"
Expand Down Expand Up @@ -257,8 +257,8 @@
<target name="test-all" depends="compile"
description="Executes all tests and generates an HTML report using JMockit Coverage.">

<javac source="1.6"
target="1.6"
<javac source="1.7"
target="1.7"
srcdir="${test}"
destdir="${build}"
debug="${debug}"
Expand Down

0 comments on commit 9b12312

Please sign in to comment.