- add notes about calling this build script directly
- forgot to copy the webapp parts when building the windows distribution git-svn-id: http://google-refine.googlecode.com/svn/trunk@86 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
parent
91d0133a76
commit
5aaa9394da
17
build.xml
17
build.xml
@ -6,6 +6,16 @@
|
|||||||
|
|
|
|
||||||
+-->
|
+-->
|
||||||
|
|
||||||
|
<!--+
|
||||||
|
| NOTE: this script expects the 'build.dir' and 'dist.dir' properties to be set
|
||||||
|
| when invoking it. This is done like this
|
||||||
|
|
|
||||||
|
| ant -f build.xml -Dbuild.dir="/path/to/build/dir" -Ddist.dir="/path/to/dist/dir"
|
||||||
|
|
|
||||||
|
| the 'gridworks' shell script does this and it's meant to be the way to invoke ant,
|
||||||
|
| so running this script directly in ant is not suggested.
|
||||||
|
+-->
|
||||||
|
|
||||||
<project name="gridworks" default="build" basedir=".">
|
<project name="gridworks" default="build" basedir=".">
|
||||||
|
|
||||||
<property environment="env"/>
|
<property environment="env"/>
|
||||||
@ -14,7 +24,7 @@
|
|||||||
<property name="graphics.dir" value="${basedir}/src/graphics" />
|
<property name="graphics.dir" value="${basedir}/src/graphics" />
|
||||||
<property name="lib.dir" value="${basedir}/lib" />
|
<property name="lib.dir" value="${basedir}/lib" />
|
||||||
<property name="tools.dir" value="${basedir}/thirdparty" />
|
<property name="tools.dir" value="${basedir}/thirdparty" />
|
||||||
<property name="build.dir" value="${basedir}/build" />
|
|
||||||
<property name="classes.dir" value="${build.dir}/classes" />
|
<property name="classes.dir" value="${build.dir}/classes" />
|
||||||
<property name="bundle.dir" value="${build.dir}/bundle" />
|
<property name="bundle.dir" value="${build.dir}/bundle" />
|
||||||
<property name="exe.dir" value="${build.dir}/exe" />
|
<property name="exe.dir" value="${build.dir}/exe" />
|
||||||
@ -111,6 +121,11 @@
|
|||||||
</fileset>
|
</fileset>
|
||||||
</copy>
|
</copy>
|
||||||
<copy file="${build.dir}/gridworks.jar" tofile="${exe.dir}/lib/gridworks-${version}.jar"/>
|
<copy file="${build.dir}/gridworks.jar" tofile="${exe.dir}/lib/gridworks-${version}.jar"/>
|
||||||
|
<copy todir="${exe.dir}/webapp">
|
||||||
|
<fileset dir="${basedir}/src/main/webapp">
|
||||||
|
<include name="**/*"/>
|
||||||
|
</fileset>
|
||||||
|
</copy>
|
||||||
<zip destfile="${dist.dir}/gridworks-${version}.zip" basedir="${exe.dir}"/>
|
<zip destfile="${dist.dir}/gridworks-${version}.zip" basedir="${exe.dir}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user