-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
37 lines (24 loc) · 997 Bytes
/
build.xml
File metadata and controls
37 lines (24 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!--
+==========================================================================
| New StencylWorks Extension
+==========================================================================
-->
<project name="polydes/sample" basedir="." default="dist">
<property name="pkg" value="com/polydes/example" />
<property name="main" value="com.polydes.example.SampleExtension" />
<property name="name" value="Extension Name" />
<property name="description" value="Extension Description." />
<property name="author" value="Author Name" />
<property name="website" value="http://example.com" />
<property name="internalVersion" value="1" />
<property name="version" value="1.0.0" />
<include file="../Common/build-helper.xml" as="common" />
<target name="dist">
<var name="usinglibs" value="false" />
<antcall>
<target name="common.compile" />
<target name="common.copy-resources" />
<target name="common.makejar" />
</antcall>
</target>
</project>