-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
33 lines (21 loc) · 853 Bytes
/
build.xml
File metadata and controls
33 lines (21 loc) · 853 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
<!--
+==========================================================================
| Imgur Extension
+==========================================================================
-->
<project name="polydes/imgur" basedir="." default="dist">
<property name="pkg" value="com/polydes/imgur" />
<property name="main" value="com.polydes.imgur.ImgurExtension" />
<property name="name" value="Imgur Extension" />
<property name="description" value="Upload toolset screenshots directly to Imgur." />
<property name="author" value="Hectate" />
<property name="version" value="1.1.1" />
<include file="../Common/build-helper.xml" as="common" />
<target name="dist">
<antcall>
<target name="common.compile" />
<target name="common.copy-resources" />
<target name="common.makejar" />
</antcall>
</target>
</project>