https://github.com/kermitt2/grobid
Revision 4dccfdfb3e46c979b94db2434dc7eff04f33b6b1 authored by Vyacheslav Zholudev on 29 April 2014, 13:41:33 UTC, committed by Vyacheslav Zholudev on 29 April 2014, 13:41:33 UTC

Former-commit-id: 4f718a6c395dda3c8b650c50918c94839be18b92
1 parent 3eff280
Raw File
Tip revision: 4dccfdfb3e46c979b94db2434dc7eff04f33b6b1 authored by Vyacheslav Zholudev on 29 April 2014, 13:41:33 UTC
updating grobid-core version
Tip revision: 4dccfdf
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