Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 0e7a0d2

Browse files
committed
Merge pull request #108 from appirio-tech/technology-2015-07-23
Update dev with latest from technology-2015-07-23 release branch
2 parents 3361f43 + e8d5b50 commit 0e7a0d2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

build.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<!-- Override these in ../topcoder_global.properties -->
77
<property name="javadoc.locale" value="en_US"/>
88
<property name="javac.encoding" value="UTF-8"/>
9+
<property name="javac.source.ver" value="1.6"/>
10+
<property name="javac.target.ver" value="1.6"/>
911
<property name="debug" value="off"/>
1012
<property name="verbose" value="no"/>
1113
<available file="topcoder_global.properties" property="properties.exists"/>
@@ -119,15 +121,17 @@
119121
<target name="compile" description="compile the source code">
120122
<mkdir dir="${build_classdir}"/>
121123
<javac srcdir="${javamain}" destdir="${build_classdir}" includes="${packagedir}/**" debug="true"
122-
verbose="${verbose}" includeAntRuntime="no" encoding="${javac.encoding}">
124+
verbose="${verbose}" includeAntRuntime="no" encoding="${javac.encoding}"
125+
source="${javac.source.ver}" target="${javac.target.ver}">
123126
<classpath refid="buildlibs"/>
124127
</javac>
125128
</target>
126129

127130
<target name="marathonmatch_compile" description="compile the marathon match source code">
128131
<mkdir dir="${build_classdir}"/>
129132
<javac srcdir="${javamain}" destdir="${build_classdir}" includes="com/topcoder/marathonmatch/**" debug="true"
130-
verbose="${verbose}" includeantruntime="no" encoding="${javac.encoding}">
133+
verbose="${verbose}" includeantruntime="no" encoding="${javac.encoding}"
134+
source="${javac.source.ver}" target="${javac.target.ver}">
131135
<classpath refid="buildlibs" />
132136
</javac>
133137
</target>

0 commit comments

Comments
 (0)