|
1 | 1 | <?xml version="1.0" encoding="utf-8" ?>
|
| 2 | +<!-- Build file based on gwtp's build file (http://code.google.com/p/gwt-platform/) --> |
| 3 | + |
2 | 4 | <project name="Processing" default="build" basedir=".">
|
3 | 5 |
|
4 | 6 | <property name="version.num" value="0.1"/>
|
|
11 | 13 | <property name="extlib.folder" location="../gwt-libs" />
|
12 | 14 | <property name="gwt.folder" location="${extlib.folder}/gwt" />
|
13 | 15 | <property name="manifest.file" value="MANIFEST.MF"/>
|
14 |
| - <property name="all.gwtp.jar.files" value="**/gwtp*.jar"/> |
| 16 | + <property name="all.processing.jar.files" value="**/processing-js-gwt*.jar"/> |
15 | 17 | <condition property="version-suffix" value="-b${env.BUILD_NUMBER}" else="-bLOCAL">
|
16 | 18 | <isset property="env.BUILD_NUMBER"/>
|
17 | 19 | </condition>
|
|
58 | 60 | <delete dir="${out.classes.folder}" failonerror="false" />
|
59 | 61 | <delete dir="${out.test.src.folder}" failonerror="false" />
|
60 | 62 | <delete failonerror="false">
|
61 |
| - <fileset dir="." includes="${all.gwtp.jar.files}" /> |
| 63 | + <fileset dir="." includes="${all.processing.jar.files}" /> |
62 | 64 | <fileset dir="." includes="**/*.zip"/>
|
63 | 65 | <fileset dir="." includes="**/*.orig"/>
|
64 | 66 | <fileset dir="${in.src.folder}" includes="**/*.class" />
|
|
97 | 99 |
|
98 | 100 |
|
99 | 101 | <target name="package" depends="clean" description="Package everything into a zip file.">
|
100 |
| - <zip destfile="gwtp-${version.num}-SNAPSHOT.zip" basedir="." excludes="**/*.zip,**/.git/**,**/.settings/**,**/.project,**/.classpath" /> |
| 102 | + <zip destfile="processing-js-gwt-${version.num}-SNAPSHOT.zip" basedir="." excludes="**/*.zip,**/.git/**,**/.settings/**,**/.project,**/.classpath" /> |
101 | 103 | </target>
|
102 | 104 |
|
103 | 105 | <target name="package.release" depends="clean" description="Package everything into a zip file.">
|
104 |
| - <zip destfile="gwtp-${version.num}.zip" basedir="." excludes="**/*.zip,**/.git/**,**/.settings/**,**/.project,**/.classpath" /> |
| 106 | + <zip destfile="processing-js-gwt-${version.num}.zip" basedir="." excludes="**/*.zip,**/.git/**,**/.settings/**,**/.project,**/.classpath" /> |
105 | 107 | </target>
|
106 | 108 |
|
107 | 109 | </project>
|
0 commit comments