Skip to content

Commit

Permalink
- default compile source/target to 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bspeakmon committed Oct 12, 2007
1 parent 90d2e90 commit b4723bb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
<property name="comp.optimize" value="off"/>
<property name="comp.depend" value="on"/>
<property name="comp.verbose" value="off"/>
<property name="comp.source" value="1.3"/>
<property name="comp.target" value="1.3"/>

<!-- important directories -->
<property name="build.dir" value="${basedir}/build"/>
Expand Down Expand Up @@ -91,7 +93,9 @@
debug="${comp.debug}"
optimize="${comp.optimize}"
verbose="${comp.verbose}"
depend="${comp.depend}">
depend="${comp.depend}"
source="${comp.source}"
target="${comp.target}">
<classpath refid="class.path"/>
<include name="**/*.java"/>
<excludesfile name="excludes-${struts.version}-${servlet.version}"/>
Expand Down

0 comments on commit b4723bb

Please sign in to comment.