Skip to content

Commit 6daf851

Browse files
author
Seren
committed
Bugfixes in build file
1 parent 90fe7dc commit 6daf851

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

build.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
2+
<!-- Build file based on gwtp's build file (http://code.google.com/p/gwt-platform/) -->
3+
24
<project name="Processing" default="build" basedir=".">
35

46
<property name="version.num" value="0.1"/>
@@ -11,7 +13,7 @@
1113
<property name="extlib.folder" location="../gwt-libs" />
1214
<property name="gwt.folder" location="${extlib.folder}/gwt" />
1315
<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"/>
1517
<condition property="version-suffix" value="-b${env.BUILD_NUMBER}" else="-bLOCAL">
1618
<isset property="env.BUILD_NUMBER"/>
1719
</condition>
@@ -58,7 +60,7 @@
5860
<delete dir="${out.classes.folder}" failonerror="false" />
5961
<delete dir="${out.test.src.folder}" failonerror="false" />
6062
<delete failonerror="false">
61-
<fileset dir="." includes="${all.gwtp.jar.files}" />
63+
<fileset dir="." includes="${all.processing.jar.files}" />
6264
<fileset dir="." includes="**/*.zip"/>
6365
<fileset dir="." includes="**/*.orig"/>
6466
<fileset dir="${in.src.folder}" includes="**/*.class" />
@@ -97,11 +99,11 @@
9799

98100

99101
<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" />
101103
</target>
102104

103105
<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" />
105107
</target>
106108

107109
</project>

0 commit comments

Comments
 (0)