42cd990e5a
git-svn-id: http://google-refine.googlecode.com/svn/trunk@1539 7d457c2a-affb-35e4-300a-418c747d4874
26 lines
705 B
XML
26 lines
705 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--+
|
|
|
|
|
| Google Refine Extensions Build File
|
|
|
|
|
+-->
|
|
|
|
<project name="google-refine-extensions" default="build" basedir=".">
|
|
<target name="build">
|
|
<echo message="Building extensions" />
|
|
<ant dir="sample/" target="build" />
|
|
<ant dir="jython/" target="build" />
|
|
<ant dir="freebase/" target="build" />
|
|
<ant dir="gdata/" target="build" />
|
|
</target>
|
|
|
|
<target name="clean">
|
|
<echo message="cleaning extensions" />
|
|
<ant dir="sample/" target="clean" />
|
|
<ant dir="jython/" target="clean" />
|
|
<ant dir="freebase/" target="clean" />
|
|
<ant dir="gdata/" target="clean" />
|
|
</target>
|
|
</project>
|