forked from payara/ecosystem-eclipse-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
23 lines (13 loc) · 731 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<project name="gf-tools" default="full-build">
<dirname property="root.dir" file="${ant.file.sapphire}" />
<property name="build.dir" value="${root.dir}/build" />
<property name="releng.dir" value="${root.dir}/releng" />
<delete dir="releng/corundum" quiet="true" />
<ant antfile="releng/corundum-src/build.xml" target="build" inheritall="false" useNativeBasedir="true" />
<unzip src="releng/corundum-src/corundum.zip" dest="releng/corundum" />
<copy file="releng/patch/finalize-product-repository.xml" todir="releng/corundum/macros" overwrite="true" />
<import file="releng/corundum/corundum.xml" />
<import>
<fileset dir="releng/corundum/extensions/eclipse.org" includes="*.xml" />
</import>
</project>