https://github.com/kermitt2/grobid
Raw File
Tip revision: e2194a83805c1260390ef89010367a97e42c9645 authored by Vyacheslav Zholudev on 15 January 2016, 17:05:40 UTC
calculating bounding boxes for blocks
Tip revision: e2194a8
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 8/19/15 8:10 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-home" target="package"/>
    <ant antfile="build.xml" dir="grobid-core" 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