-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
28 lines (26 loc) · 1021 Bytes
/
build.xml
File metadata and controls
28 lines (26 loc) · 1021 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="Irisnet API Client" default="help" basedir=".">
<property name="src" value="./"/>
<property name="dest" value="${src}/build"/>
<property name="filename" value="irisnet-api-client"/>
<target name="package" description="Packages the Wordpress plugin.">
<delete dir="${dest}"/>
<mkdir dir="${dest}"/>
<zip
destfile="${dest}/${filename}.zip"
basedir="${src}">
<fileset dir=".">
<include name="assets/**"/>
<include name="ext/**"/>
<include name="inc/**"/>
<include name="templates/**"/>
<include name="index.php"/>
<include name="irisnet-api-client.php"/>
<include name="LICENSE"/>
<include name="readme.txt"/>
<include name="README.md"/>
<include name="uninstall.php"/>
</fileset>
</zip>
</target>
</project>