-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
27 lines (24 loc) · 962 Bytes
/
build.xml
File metadata and controls
27 lines (24 loc) · 962 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================================
10.2.2015 19.19.08
aur-pkg-checker-java
Arch Linux User Repository version checker
Copyright (C) 2015 Teemu Frisk
====================================================================== -->
<project name="aur-pkg-checker-java" default="makejar">
<description>
Arch Linux User Repository version checker
</description>
<!-- =================================
target: makejar
================================= -->
<target name="makejar" description="Create jar">
<jar
destfile="AurPkgChecker.jar"
includes="**/*.class"
basedir="bin"
manifest="manifest.mf">
<zipgroupfileset includes="*.jar" dir="lib"/>
</jar>
</target>
</project>