110 lines
3.3 KiB
Plaintext
110 lines
3.3 KiB
Plaintext
<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>com.googlecode.mate-tools</groupId>
|
|
<artifactId>srl</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>srl</name>
|
|
<version>4.31</version>
|
|
<description>mate-tools Semantic Role Labeler</description>
|
|
<url>https://code.google.com/p/mate-tools/</url>
|
|
<licenses>
|
|
<license>
|
|
<name>GNU General Public License, Version 2</name>
|
|
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<name>Anders Björkelund</name>
|
|
<email>anders@ims.uni-stuttgart.de</email>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>scm:svn:http://mate-tools.googlecode.com/svn/trunk/</connection>
|
|
<url>http://mate-tools.googlecode.com/svn/trunk</url>
|
|
</scm>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.riedelcastro</groupId>
|
|
<artifactId>whatswrong</artifactId>
|
|
<version>0.2.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>edu.stanford.nlp</groupId>
|
|
<artifactId>stanford-parser</artifactId>
|
|
<version>3.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.opennlp</groupId>
|
|
<artifactId>opennlp-tools</artifactId>
|
|
<version>1.5.2-incubating</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>jwnl</artifactId>
|
|
<groupId>jwnl</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.opennlp</groupId>
|
|
<artifactId>opennlp-maxent</artifactId>
|
|
<version>3.0.2-incubating</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.mate-tools</groupId>
|
|
<artifactId>anna</artifactId>
|
|
<version>3.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>edu.stanford.nlp</groupId>
|
|
<artifactId>stanford-corenlp</artifactId>
|
|
<version>3.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.bwaldvogel</groupId>
|
|
<artifactId>liblinear</artifactId>
|
|
<version>1.7.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |