34 lines
874 B
XML
34 lines
874 B
XML
<project name="Jet CI Bootstrap" default="CEBuild">
|
|
<import file="build.xml" optional="false"/>
|
|
|
|
<macrodef name="echoprop">
|
|
<attribute name="prop"/>
|
|
<sequential>
|
|
<echo>@{prop}=${@{prop}}</echo>
|
|
</sequential>
|
|
</macrodef>
|
|
|
|
<echoprop prop="os.name"/>
|
|
<echoprop prop="os.version"/>
|
|
<echoprop prop="os.arch"/>
|
|
<echoprop prop="java.home"/>
|
|
<echoprop prop="java.vendor"/>
|
|
<echoprop prop="java.version"/>
|
|
<echoprop prop="user.name"/>
|
|
<echoprop prop="user.home"/>
|
|
<echoprop prop="user.dir"/>
|
|
|
|
<target name="unzipDependencies">
|
|
<unzip dest="ideaSDK">
|
|
<fileset dir="ideaSDK" includes="ideaIC*.zip"/>
|
|
</unzip>
|
|
|
|
<delete dir="ideaSDK" includes="ideaIC*.zip"/>
|
|
</target>
|
|
|
|
<target name="CEBuild" depends="unzipDependencies, dist">
|
|
|
|
</target>
|
|
|
|
</project>
|