Skip to content

Commit

Permalink
Specifying Java 1.5 explicitly in the build. We don't work build perf…
Browse files Browse the repository at this point in the history
…ectly on Java 1.6 yet...

git-svn-id: https://google-guice.googlecode.com/svn/trunk@695 d779f126-a31b-0410-b53b-1d3aecad763e
  • Loading branch information
limpbizkit committed Nov 23, 2008
1 parent eabdb30 commit 8bb742a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions common.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
<mkdir dir="${build.dir}/classes"/>
<javac srcdir="${src.dir}"
debug="on"
destdir="${build.dir}/classes">
destdir="${build.dir}/classes"
source="1.5" target="1.5">
<classpath refid="compile.classpath"/>
</javac>
<copy toDir="${build.dir}/classes">
Expand Down Expand Up @@ -60,7 +61,8 @@
<mkdir dir="${build.dir}/test"/>
<javac srcdir="${test.dir}"
debug="on"
destdir="${build.dir}/test">
destdir="${build.dir}/test"
source="1.5" target="1.5">
<classpath path="${build.dir}/classes"/>
<classpath refid="compile.classpath"/>
</javac>
Expand Down

0 comments on commit 8bb742a

Please sign in to comment.