https://github.com/kermitt2/grobid
Raw File
Tip revision: db97eb9214f11e677a318f45a2a26d56228d366d authored by Vyacheslav Zholudev on 17 January 2015, 15:47:23 UTC
[maven-release-plugin] prepare release grobid-parent-0.3.0
Tip revision: db97eb9
maven-build.xml
<?xml version="1.0" encoding="UTF-8"?>

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

<!-- ====================================================================== -->
<!-- ===================== - DO NOT EDIT THIS FILE! - ===================== -->
<!-- ====================================================================== -->
<!--                                                                        -->
<!-- Any modifications will be overwritten.                                 -->
<!--                                                                        -->
<!-- Generated by Maven Ant Plugin on 12/2/13 1:32 PM                       -->
<!-- See: http://maven.apache.org/plugins/maven-ant-plugin/                 -->
<!--                                                                        -->
<!-- ====================================================================== -->

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

  <!-- ====================================================================== -->
  <!-- Cleaning up target                                                     -->
  <!-- ====================================================================== -->

  <target name="clean" description="Clean the output directory">
    <ant antfile="build.xml" dir="grobid-home" target="clean"/>
    <ant antfile="build.xml" dir="grobid-core" target="clean"/>
    <ant antfile="build.xml" dir="grobid-trainer" target="clean"/>
    <ant antfile="build.xml" dir="grobid-service" target="clean"/>
  </target>

  <!-- ====================================================================== -->
  <!-- Compilation target                                                     -->
  <!-- ====================================================================== -->

  <target name="compile" description="Compile the code">
    <ant antfile="build.xml" dir="grobid-home" target="compile"/>
    <ant antfile="build.xml" dir="grobid-core" target="compile"/>
    <ant antfile="build.xml" dir="grobid-trainer" target="compile"/>
    <ant antfile="build.xml" dir="grobid-service" target="compile"/>
  </target>

  <!-- ====================================================================== -->
  <!-- Test-compilation target                                                -->
  <!-- ====================================================================== -->

  <target name="compile-tests" description="Compile the test code">
    <ant antfile="build.xml" dir="grobid-home" target="compile-tests"/>
    <ant antfile="build.xml" dir="grobid-core" target="compile-tests"/>
    <ant antfile="build.xml" dir="grobid-trainer" target="compile-tests"/>
    <ant antfile="build.xml" dir="grobid-service" target="compile-tests"/>
  </target>

  <!-- ====================================================================== -->
  <!-- Run all tests                                                          -->
  <!-- ====================================================================== -->

  <target name="test" description="Run the test cases">
    <ant antfile="build.xml" dir="grobid-home" target="test"/>
    <ant antfile="build.xml" dir="grobid-core" target="test"/>
    <ant antfile="build.xml" dir="grobid-trainer" target="test"/>
    <ant antfile="build.xml" dir="grobid-service" target="test"/>
  </target>

  <!-- ====================================================================== -->
  <!-- Javadoc target                                                         -->
  <!-- ====================================================================== -->

  <target name="javadoc" description="Generates the Javadoc of the application">
    <ant antfile="build.xml" dir="grobid-home" target="javadoc"/>
    <ant antfile="build.xml" dir="grobid-core" target="javadoc"/>
    <ant antfile="build.xml" dir="grobid-trainer" target="javadoc"/>
    <ant antfile="build.xml" dir="grobid-service" target="javadoc"/>
  </target>

  <!-- ====================================================================== -->
  <!-- Package target                                                         -->
  <!-- ====================================================================== -->

  <target name="package" description="Package the application">
    <ant antfile="build.xml" dir="grobid-core" target="package"/>
	<ant antfile="build.xml" dir="grobid-home" target="package"/>
    <ant antfile="build.xml" dir="grobid-trainer" target="package"/>
    <ant antfile="build.xml" dir="grobid-service" target="package"/>
  </target>

</project>
back to top