|
Revision 6555, 395 bytes
(checked in by shogo4405, 5 years ago)
|
|
|
| Rev | Line | |
|---|
| [6516] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
|---|
| [6555] | 2 | <project name="utiljs" default="all" basedir="../">
|
|---|
| 3 |
|
|---|
| [6516] | 4 | <taskdef name="yuic" classname="org.coderepos.utiljs.taskdefs.Yuic" classpath="bin;lib/yuicompressor-2.3.5.jar" />
|
|---|
| [6555] | 5 |
|
|---|
| 6 | <!-- Yuic Test -->
|
|---|
| 7 | <target name="yuic">
|
|---|
| 8 | <yuic srcDir="test/sample" destDir="result/yuic" />
|
|---|
| [6516] | 9 | </target>
|
|---|
| [6555] | 10 |
|
|---|
| 11 | <!-- All -->
|
|---|
| 12 | <target name="all" depends="yuic" />
|
|---|
| 13 |
|
|---|
| [6516] | 14 | </project>
|
|---|