<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>edu.nyu</groupId>
    <artifactId>jet</artifactId>
    <version>1.9.0</version>
 
    <name>JET:  Java Extractiop Toolkit</name>
    <description>
    Information extraction is the process of identifying specified classes of entities, relations, and events in natural language text – creating structured data from unstructured input. JET, the Java Extraction Toolkit, developed at New York University over the past fifteen years, provides a rich set of tools for research and education in information extraction from English text. These include standard language processing tools such as a tokenizer, sentence segmenter, part-of-speech tagger, name tagger, regular-expression pattern matcher, and dependency parser. Also provided are relation and event extractors based on the specifications of the U.S. Government's ACE [Automatic Content Extraction] program. The program is provided under an Apache 2.0 license.
    </description>
    <url>http://cs.nyu.edu/grishman/jet/jet.html</url>
    <organization>
      <name>New York University</name>
      <url>http://www.nyu.edu</url>
    </organization>
    <scm>
      <url>https://github.com/rgrishman/jet.git</url>
    </scm>
    <licenses>
      <license>
        <name>Apache License, Version 2.0</name>
        <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      </license>
    </licenses>
    <developers>
      <developer><name>Ralph Grishman</name>
                 <email>grishman@cs.nyu.edu</email>
      </developer>
      <developer><name>Yifan He</name></developer>
      <developer><name>Angus Grieve-Smith</name></developer>
    </developers>

    <distributionManagement>
      <snapshotRepository>
	<id>ossrh</id>
	<url>https://oss.sonatype.org/content/repositories/snapshots</url>
      </snapshotRepository>
      <repository>
	<id>ossrh</id>
	<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
      </repository>
    </distributionManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.2</version>
                <configuration>
                    <source>5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.5.5</version>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                    <!-- source>5</source -->
                </configuration>
                <executions>
                    <execution>
                        <id>assemble-all</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
	    <plugin>
	      <groupId>org.apache.maven.plugins</groupId>
	      <artifactId>maven-gpg-plugin</artifactId>
	      <version>1.5</version>
	      <executions>
		<execution>
		  <id>sign-artifacts</id>
		  <phase>verify</phase>
		  <goals>
		    <goal>sign</goal>
		  </goals>
		</execution>
	      </executions>
	    </plugin>
	    <plugin>
	      <groupId>org.apache.maven.plugins</groupId>
	      <artifactId>maven-install-plugin</artifactId>
	      <version>2.5.2</version>
              <executions>
		<execution>
                  <id>install-mallet</id>
                  <phase>process-resources</phase>
                  <configuration>
                    <file>${basedir}/lib/mallet.jar</file>
                    <repositoryLayout>default</repositoryLayout>
                    <groupId>edu.umass.cs</groupId>
                    <artifactId>mallet</artifactId>
                    <version>0.4</version>
                    <packaging>jar</packaging>
                    <generatePom>true</generatePom>
                  </configuration>
                  <goals>
                    <goal>install-file</goal>
                  </goals>
		</execution>
		<execution>
                  <id>install-mallet-crf</id>
                  <phase>process-resources</phase>
                  <configuration>
                    <file>${basedir}/lib/mallet-crf.jar</file>
                    <repositoryLayout>default</repositoryLayout>
                    <groupId>edu.umass.cs</groupId>
                    <artifactId>mallet.fst</artifactId>
                    <version>0.4</version>
                    <packaging>jar</packaging>
                    <generatePom>true</generatePom>
                  </configuration>
                  <goals>
                    <goal>install-file</goal>
                  </goals>
		</execution>
		<execution>
                  <id>install-fanseparser</id>
                  <phase>process-resources</phase>
                  <configuration>
                    <file>${basedir}/lib/fanseparser-0.2.2.jar</file>
                    <repositoryLayout>default</repositoryLayout>
                    <groupId>edu.isi</groupId>
                    <artifactId>fanseparser</artifactId>
                    <version>0.2.2</version>
                    <packaging>jar</packaging>
                    <generatePom>true</generatePom>
                  </configuration>
                  <goals>
                    <goal>install-file</goal>
                  </goals>
		</execution>
              </executions>
	    </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-surefire-plugin</artifactId>
              <version>2.19.1</version>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-source-plugin</artifactId>
              <version>2.2.1</version>
              <executions>
                <execution>
                  <id>attach-sources</id>
                  <goals>
                    <goal>jar-no-fork</goal>
                  </goals>
                </execution>
              </executions>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-javadoc-plugin</artifactId>
              <version>2.9.1</version>
              <executions>
                <execution>
                  <id>attach-javadocs</id>
                  <goals>
                    <goal>jar</goal>
                  </goals>
                </execution>
              </executions>
            </plugin>
        </plugins>
    </build>
    <dependencies>
	<dependency>
	  <groupId>org.apache.opennlp</groupId>
	  <artifactId>opennlp-maxent</artifactId>
	  <version>3.0.1-incubating</version>
	</dependency>
	<dependency>
          <groupId>org.jyaml</groupId>
          <artifactId>jyaml</artifactId>
          <version>1.2</version>
	</dependency>
        <dependency>
          <groupId>net.sf.trove4j</groupId>
          <artifactId>trove4j</artifactId>
          <version>3.0.3</version>
        </dependency>
	<!-- http://mvnrepository.com/artifact/net.sf.jwordnet/jwnl -->
	<dependency>
	  <groupId>net.sf.jwordnet</groupId>
	  <artifactId>jwnl</artifactId>
	  <version>1.4_rc3</version>
	</dependency>
	<!-- http://mvnrepository.com/artifact/commons-logging/commons-logging -->
	<dependency>
	  <groupId>commons-logging</groupId>
	  <artifactId>commons-logging</artifactId>
	  <version>1.2</version>
	</dependency>
	<!-- http://mvnrepository.com/artifact/joda-time/joda-time -->
	<dependency>
	  <groupId>joda-time</groupId>
	  <artifactId>joda-time</artifactId>
	  <version>1.2.1</version>
	</dependency>
	<!-- http://mvnrepository.com/artifact/pnuts/pnuts -->
	<dependency>
	  <groupId>pnuts</groupId>
	  <artifactId>pnuts</artifactId>
	  <version>1.2</version>
	</dependency>
	<!-- http://mvnrepository.com/artifact/cc.mallet/mallet -->
	<dependency>
	  <groupId>edu.umass.cs</groupId>
	  <artifactId>mallet</artifactId>
	  <version>0.4</version>
	</dependency>
	<dependency>
	  <groupId>edu.umass.cs</groupId>
	  <artifactId>mallet.fst</artifactId>
	  <version>0.4</version>
	</dependency>
	<!-- http://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
	<dependency>
	  <groupId>org.slf4j</groupId>
	  <artifactId>slf4j-api</artifactId>
	  <version>1.7.5</version>
	</dependency>
	<!-- http://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
	<dependency>
	  <groupId>org.slf4j</groupId>
	  <artifactId>slf4j-simple</artifactId>
	  <version>1.7.5</version>
	</dependency>
 	<dependency>
	  <groupId>edu.isi</groupId>
	  <artifactId>fanseparser</artifactId>
	  <version>0.2.2</version>
	</dependency>
	<!-- http://mvnrepository.com/artifact/junit/junit -->
	<dependency>
	  <groupId>junit</groupId>
	  <artifactId>junit</artifactId>
	  <version>4.0</version>
	</dependency>
    </dependencies>

</project>
