-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
26 lines (21 loc) · 823 Bytes
/
build.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE project>
<project name="jquery.inputFileWidth" default="all">
<property name="libDir" value="./libs" />
<property name="distDir" value="./dist"/>
<target name="all" depends="inputFileWidth" description="Scrambling all plugin sources">
</target>
<target name="inputFileWidth" description="Scrambling and build inputFileWidth">
<property file="./VERSION.txt" />
<echo message="Scrambling inputFileWidth source" />
<java jar="${libDir}/yuicompressor-2.4.2.jar"
output="./jquery.inputFileWidth-min.js"
logerror="true"
fork="true">
<arg value="-v" />
<arg value="--charset=UTF-8" />
<arg value="--line-break=80" />
<arg value="./jquery.inputFileWidth.js" />
</java>
</target>
</project>