This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
youys
/
ant
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
1
Code
Releases
0
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Java9's javac doesn't support -source 1.4 anymore
master
Stefan Bodewig
10 years ago
parent
e0f845f8cf
commit
17ebe7ad34
1 changed files
with
6 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-1
src/etc/testcases/types/assertions.xml
+ 6
- 1
src/etc/testcases/types/assertions.xml
View File
@@ -21,10 +21,15 @@
<import file="../buildfiletest-base.xml"/>
<target name="setUp">
<available property="jdk1.6+" classname="java.net.CookieStore"/>
<condition property="source" value="6">
<isset property="jdk1.6+"/>
</condition>
<property name="source" value="1.4"/>
<mkdir dir="${output}"/>
<javac srcdir="${src.dir}"
includes="*.java"
source="1.4"
source="
${source}
"
debug="true"
destdir="${output}"
/>
Write
Preview
Loading…
Cancel
Save