-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
18 lines (14 loc) · 704 Bytes
/
Copy pathbuild.xml
File metadata and controls
18 lines (14 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project basedir="." default="package" name="SageTVPlexChannel">
<property name="version" value="1.0.3-beta"/>
<property name="target" value="${basedir}/target/"/>
<property name="bundleName" value="SageTVPhoenix"/>
<property name="bundleSource" value="${bundleName}.bundle"/>
<property name="bundleZip" value="${bundleName}-${version}.zip"/>
<target name="package" depends="">
<mkdir dir="${target}" />
<zip file="${target}/${bundleZip}" update="false">
<zipfileset prefix="${bundleSource}" dir="${bundleSource}" includes="**/**" excludes="**/*.iml"/>
</zip>
</target>
</project>