mirror of
https://github.com/mirror/jdownloader.git
synced 2024-11-23 03:59:51 +00:00
git-svn-id: svn://svn.jdownloader.org/jdownloader/trunk@48255 ebf7c1c2-ba36-0410-9fe8-c592906822b4
Former-commit-id: 64ed9a301727c809f81e7769cdeff69cf5d8d726
This commit is contained in:
parent
ef39e6e0f1
commit
ed731d8734
@ -45,46 +45,46 @@
|
||||
|
||||
<!-- Compiles the code -->
|
||||
<target name="compile" depends="clean">
|
||||
<property name="jvm_target" value="1.6" />
|
||||
<property name="jvm_source" value="1.6" />
|
||||
<mkdir dir="${cls}" />
|
||||
|
||||
|
||||
|
||||
<!-- Build dependencies -->
|
||||
|
||||
<javac srcdir="${dep.awu}/src" excludes="**/test/**" verbose="false" debug="${debug}" destdir="${cls}" encoding="UTF-8" source="1.6" target="1.6" includeantruntime="false">
|
||||
<javac srcdir="${dep.awu}/src" excludes="**/test/**" verbose="false" debug="${debug}" destdir="${cls}" encoding="UTF-8" source="${jvm_source}" target="${jvm_target}" includeantruntime="false">
|
||||
<classpath refid="classpath" />
|
||||
|
||||
</javac>
|
||||
|
||||
<javac srcdir="${dep.myjd}/src" excludes="**/test/**" verbose="false" debug="${debug}" destdir="${cls}" encoding="UTF-8" source="1.6" target="1.6" includeantruntime="false">
|
||||
<javac srcdir="${dep.myjd}/src" excludes="**/test/**" verbose="false" debug="${debug}" destdir="${cls}" encoding="UTF-8" source="${jvm_source}" target="${jvm_target}" includeantruntime="false">
|
||||
<classpath refid="classpath" />
|
||||
|
||||
</javac>
|
||||
|
||||
<javac srcdir="${dep.browser}/src" excludes="" debug="${debug}" verbose="false" destdir="${cls}" encoding="UTF-8" source="1.6" target="1.6" includeantruntime="false">
|
||||
<javac srcdir="${dep.browser}/src" excludes="" debug="${debug}" verbose="false" destdir="${cls}" encoding="UTF-8" source="${jvm_source}" target="${jvm_target}" includeantruntime="false">
|
||||
<classpath refid="classpath" />
|
||||
|
||||
</javac>
|
||||
|
||||
|
||||
|
||||
<javac srcdir="${dep.updateclient}/src" excludes="" verbose="false" debug="${debug}" destdir="${cls}" encoding="UTF-8" source="1.6" target="1.6" includeantruntime="false">
|
||||
<javac srcdir="${dep.updateclient}/src" excludes="" verbose="false" debug="${debug}" destdir="${cls}" encoding="UTF-8" source="${jvm_source}" target="${jvm_target}" includeantruntime="false">
|
||||
<classpath refid="classpath" />
|
||||
|
||||
|
||||
</javac>
|
||||
|
||||
<javac srcdir="src" debug="${debug}" verbose="false" excludes="jd/utils/dev/*,org/jdownloader/extensions/langfileeditor/**/*,org/jdownloader/extensions/remoteserv/**/*" destdir="${cls}" encoding="UTF-8" source="1.6" target="1.6" includeantruntime="false">
|
||||
<javac srcdir="src" debug="${debug}" verbose="false" excludes="jd/utils/dev/*,org/jdownloader/extensions/langfileeditor/**/*,org/jdownloader/extensions/remoteserv/**/*" destdir="${cls}" encoding="UTF-8" source="${jvm_source}" target="${jvm_target}" includeantruntime="false">
|
||||
<classpath refid="classpath" />
|
||||
<compilerarg line="-proc:none" />
|
||||
|
||||
</javac>
|
||||
<javac srcdir="${dep.jdupdateclient}/src" excludes="" debug="${debug}" destdir="${cls}" encoding="UTF-8" source="1.6" target="1.6" includeantruntime="false">
|
||||
<javac srcdir="${dep.jdupdateclient}/src" excludes="" debug="${debug}" destdir="${cls}" encoding="UTF-8" source="${jvm_source}" target="${jvm_target}" includeantruntime="false">
|
||||
<classpath refid="classpath" />
|
||||
|
||||
</javac>
|
||||
|
||||
<javac srcdir="${dep.jdc}/src" debug="${debug}" verbose="false" excludes="**/test/**" destdir="${cls}" encoding="UTF-8" source="1.6" target="1.6" includeantruntime="false">
|
||||
<javac srcdir="${dep.jdc}/src" debug="${debug}" verbose="false" excludes="**/test/**" destdir="${cls}" encoding="UTF-8" source="${jvm_source}" target="${jvm_target}" includeantruntime="false">
|
||||
<classpath refid="classpath" />
|
||||
</javac>
|
||||
<echo message="Finished." />
|
||||
|
@ -14,10 +14,6 @@
|
||||
<property name="pluginres" value="${dist}/pluginressourcen" />
|
||||
|
||||
|
||||
<property name="jvm_target" value="1.8" />
|
||||
<property name="jvm_source" value="1.8" />
|
||||
|
||||
|
||||
|
||||
<path id="classpath">
|
||||
<fileset dir="${cls}" />
|
||||
@ -38,6 +34,11 @@
|
||||
|
||||
<!-- Compiles the code -->
|
||||
<target name="compile" depends="clean">
|
||||
|
||||
<property name="jvm_target" value="1.8" />
|
||||
<property name="jvm_source" value="1.8" />
|
||||
|
||||
|
||||
<mkdir dir="${cls}" />
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user