Skip to content

Commit

Permalink
added javac.target to all build files.
Browse files Browse the repository at this point in the history
  • Loading branch information
rssh committed Jun 16, 2012
1 parent a601367 commit 98dcc7e
Show file tree
Hide file tree
Showing 39 changed files with 65 additions and 3,728 deletions.
2 changes: 1 addition & 1 deletion build.properties
Expand Up @@ -7,4 +7,4 @@ ivy.install.version=2.2.0

gwt.home=/opt/gwt

javac.target="1.6"
javac.target=1.6
4 changes: 3 additions & 1 deletion facilities/ua.gradsoft.jungle.configuration-ui-gwt/build.xml
Expand Up @@ -29,7 +29,9 @@
<target name="compile" description="Compile src to bin"
depends="retrieve-libs">
<mkdir dir="bin"/>
<javac srcdir="src:test-client:test-server" destdir="bin" includes="**" debug="on" debuglevel="lines,vars,source" >
<javac srcdir="src:test-client:test-server" destdir="bin" includes="**" debug="on" debuglevel="lines,vars,source"
target="${javac.target}"
>
<classpath refid="project.class.path"/>
</javac>
</target>
Expand Down
1 change: 1 addition & 0 deletions facilities/ua.gradsoft.jungle.configuration/build.xml
Expand Up @@ -72,6 +72,7 @@
srcdir="${src-api.dir}"
includes="**/*.java"
deprecation="on"
target="${javac.target}"
debug="${debug}" >
<!--<compilerarg line="-Xlint:unchecked" />-->
<classpath>
Expand Down
3 changes: 3 additions & 0 deletions facilities/ua.gradsoft.jungle.localization/build.xml
Expand Up @@ -78,6 +78,7 @@
<javac destdir="${build-api.dir}"
srcdir="${src-api.dir}"
includes="**/*.java"
target="${javac.target}"
deprecation="on"
debug="${debug}" >
<!--<compilerarg line="-Xlint:unchecked" />-->
Expand All @@ -100,6 +101,7 @@
<javac destdir="${build-impl.dir}"
srcdir="${src-impl.dir}"
includes="**/*.java"
target="${javac.target}"
deprecation="on"
debug="${debug}" >
<!--<compilerarg line="-Xlint:unchecked" />-->
Expand Down Expand Up @@ -134,6 +136,7 @@
srcdir="${src-test.dir}"
includes="**/*.java"
deprecation="on"
target="${javac.target}"
debug="${debug}"
>
<classpath>
Expand Down

0 comments on commit 98dcc7e

Please sign in to comment.