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 2011/01/20 13:59:05 UTC

svn commit: r1061280 - in /incubator/opennlp/trunk: opennlp-distr/pom.xml opennlp/pom.xml

Author: joern
Date: Thu Jan 20 12:59:05 2011
New Revision: 1061280

URL: http://svn.apache.org/viewvc?rev=1061280&view=rev
Log:
OPENNLP-19 Initial version of the distribution assembly pom, still needs to be extended/modified to produce the desired distributables

Added:
    incubator/opennlp/trunk/opennlp-distr/pom.xml   (with props)
Modified:
    incubator/opennlp/trunk/opennlp/pom.xml

Added: incubator/opennlp/trunk/opennlp-distr/pom.xml
URL: http://svn.apache.org/viewvc/incubator/opennlp/trunk/opennlp-distr/pom.xml?rev=1061280&view=auto
==============================================================================
--- incubator/opennlp/trunk/opennlp-distr/pom.xml (added)
+++ incubator/opennlp/trunk/opennlp-distr/pom.xml Thu Jan 20 12:59:05 2011
@@ -0,0 +1,79 @@
+<?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/maven-v4_0_0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<parent>
+		<groupId>org.apache.opennlp</groupId>
+		<artifactId>opennlp-reactor</artifactId>
+		<version>1.5.1-incubating-SNAPSHOT</version>
+		<relativePath>../opennlp/pom.xml</relativePath>
+	</parent>
+
+	<artifactId>opennlp-distr</artifactId>
+	<version>1.5.1-SNAPSHOT</version>
+	<packaging>pom</packaging>
+	<name>OpenNLP Distribution</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.opennlp</groupId>
+			<artifactId>opennlp-maxent</artifactId>
+			<version>3.0.1-incubating-SNAPSHOT</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.opennlp</groupId>
+			<artifactId>opennlp-tools</artifactId>
+			<version>1.5.1-incubating-SNAPSHOT</version>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-assembly-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>bundle-project-sources</id>
+						<phase>package</phase>
+						<goals>
+							<goal>single</goal>
+						</goals>
+						<!-- configuration>
+							<descriptors>
+								<descriptor>src/main/assembly/src.xml</descriptor>
+							</descriptors>
+						</configuration -->
+						<configuration>
+			              <descriptorRefs>
+			                <descriptorRef>
+			                  jar-with-dependencies
+			                </descriptorRef>
+			              </descriptorRefs>
+			            </configuration>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+</project>
\ No newline at end of file

Propchange: incubator/opennlp/trunk/opennlp-distr/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: incubator/opennlp/trunk/opennlp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/opennlp/trunk/opennlp/pom.xml?rev=1061280&r1=1061279&r2=1061280&view=diff
==============================================================================
--- incubator/opennlp/trunk/opennlp/pom.xml (original)
+++ incubator/opennlp/trunk/opennlp/pom.xml Thu Jan 20 12:59:05 2011
@@ -100,6 +100,7 @@
 		<module>../opennlp-tools</module>
 		<module>../opennlp-uima</module>
 		<module>../opennlp-docs</module>
+		<module>../opennlp-distr</module>
 	</modules>
 
 </project>
\ No newline at end of file