You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jo...@apache.org on 2013/05/08 11:24:14 UTC

svn commit: r1480192 - /opennlp/sandbox/opennlp-coref/pom.xml

Author: joern
Date: Wed May  8 09:24:13 2013
New Revision: 1480192

URL: http://svn.apache.org/r1480192
Log:
OPENNLP-575 Added initial pom file to build to coref component.

Added:
    opennlp/sandbox/opennlp-coref/pom.xml

Added: opennlp/sandbox/opennlp-coref/pom.xml
URL: http://svn.apache.org/viewvc/opennlp/sandbox/opennlp-coref/pom.xml?rev=1480192&view=auto
==============================================================================
--- opennlp/sandbox/opennlp-coref/pom.xml (added)
+++ opennlp/sandbox/opennlp-coref/pom.xml Wed May  8 09:24:13 2013
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+
+<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>
+	
+	<parent>
+		<groupId>org.apache</groupId>
+		<artifactId>apache</artifactId>
+		<version>13</version>
+		<relativePath />
+	</parent>
+
+	<artifactId>opennlp-coref</artifactId>
+	<version>1.5.4-SNAPSHOT</version>
+	<packaging>jar</packaging>
+	<name>Apache OpenNLP Coreferencer</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.opennlp</groupId>
+			<artifactId>opennlp-tools</artifactId>
+			<version>1.5.3</version>
+			<scope>compile</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>net.sf.jwordnet</groupId>
+			<artifactId>jwnl</artifactId>
+			<version>1.3.3</version>
+			<scope>compile</scope>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<resources>
+		    <resource>
+		      <directory>src/main/resources</directory>
+		      <filtering>true</filtering>
+		    </resource>
+		</resources>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<argLine>-Xmx512m</argLine>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+					<compilerArgument>-Xlint</compilerArgument>
+				</configuration>
+			</plugin>
+            
+           		<plugin>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>create-javadoc-jar</id>
+						<configuration>
+							<excludePackageNames>opennlp.tools.cmdline</excludePackageNames>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+</project>