https://github.com/kermitt2/grobid
Revision e578393dac07167eacd6d251ced85046775c9b08 authored by kermitt2 on 08 December 2014, 12:56:03 UTC, committed by kermitt2 on 08 December 2014, 12:56:03 UTC
1 parent 4acc7a5
Raw File
Tip revision: e578393dac07167eacd6d251ced85046775c9b08 authored by kermitt2 on 08 December 2014, 12:56:03 UTC
Add robustness for the segmentation model in case of particular PDF accent/diaresis sequences
Tip revision: e578393
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