projects
/
Macaco
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c4802c
)
Set Java 6 as compilation target.
author
Marco Zanon
<info@marcozanon.com>
Wed, 29 Apr 2015 12:40:19 +0000
(12:40 +0000)
committer
Marco Zanon
<info@marcozanon.com>
Wed, 29 Apr 2015 12:40:19 +0000
(12:40 +0000)
3.x/build.xml
patch
|
blob
|
history
diff --git
a/3.x/build.xml
b/3.x/build.xml
index d6e0285dd8a66a58509fd62eef2f6fbf421f5252..443e4c0195868860d6eea62dc2b64cf0ce060865 100644
(file)
--- a/
3.x/build.xml
+++ b/
3.x/build.xml
@@
-14,7
+14,7
@@
<target name="compile" depends="clean" description="Compiles .java source code to .class bytecode.">
<mkdir dir="target/classes/" />
- <javac srcdir="src/java/" destdir="target/classes/">
+ <javac
target="1.6" source="1.6"
srcdir="src/java/" destdir="target/classes/">
<compilerarg value="-Xlint" />
</javac>
</target>