This repository was archived by the owner on Jan 23, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 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" />
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 >
You can’t perform that action at this time.
0 commit comments