Revision a221c0506fb2447d8e3a42af759cb10b85b364dc authored by Vyacheslav Zholudev on 22 September 2017, 15:09:30 UTC, committed by Vyacheslav Zholudev on 22 September 2017, 15:09:42 UTC

Former-commit-id: 25ea83b1616a75e45f8d83ef36efaad02322830b
1 parent bc8380d
Raw File
build.xml
<?xml version="1.0" encoding="UTF-8"?>

<!-- ====================================================================== -->
<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above.        -->
<!-- ====================================================================== -->

<project name="grobid-parent" default="package" basedir=".">

  <!-- ====================================================================== -->
  <!-- Import maven-build.xml into the current project                        -->
  <!-- ====================================================================== -->

  <import file="maven-build.xml"/>
  
  <!--presetdef name="javac">
    <javac includeantruntime="true" />
  </presetdef-->

  <!-- ====================================================================== -->
  <!-- Help target                                                            -->
  <!-- ====================================================================== -->

  <target name="help">
    <echo message="Please run: $ant -projecthelp"/>
  </target>

 <!-- ====================================================================== -->
  <!-- jar target                                                         -->
  <!-- ====================================================================== -->

  <target name="jar" description="Create the jar libraries">
    <ant antfile="build.xml" dir="grobid-core" target="jar"/>
    <ant antfile="build.xml" dir="grobid-trainer" target="jar"/>
  </target>

  <target name="war" description="Create the jar libraries">
    <ant antfile="build.xml" dir="grobid-home" target="jar"/>
    <ant antfile="build.xml" dir="grobid-core" target="jar"/>
    <ant antfile="build.xml" dir="grobid-trainer" target="jar"/>
	<ant antfile="build.xml" dir="grobid-service" target="war"/>
  </target>

</project>
back to top