You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by to...@apache.org on 2009/06/09 16:56:17 UTC

svn commit: r783021 - /incubator/uima/sandbox/trunk/SimpleUimaAsService/pom.xml

Author: tongfin
Date: Tue Jun  9 14:56:17 2009
New Revision: 783021

URL: http://svn.apache.org/viewvc?rev=783021&view=rev
Log:
Initial version

Added:
    incubator/uima/sandbox/trunk/SimpleUimaAsService/pom.xml

Added: incubator/uima/sandbox/trunk/SimpleUimaAsService/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/SimpleUimaAsService/pom.xml?rev=783021&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/SimpleUimaAsService/pom.xml (added)
+++ incubator/uima/sandbox/trunk/SimpleUimaAsService/pom.xml Tue Jun  9 14:56:17 2009
@@ -0,0 +1,176 @@
+<!--
+	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>
+	<groupId>org.apache.uima</groupId>
+	<artifactId>SimpleUIMAAsService</artifactId>
+	<packaging>jar</packaging>
+	<version>2.3.0-incubating-SNAPSHOT</version>
+	<name>Apache UIMA Simple AS Service</name>
+	<url>http://incubator.apache.org/uima</url>
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.uima</groupId>
+			<artifactId>uimaj-core</artifactId>
+			<version>2.3.0-incubating-SNAPSHOT</version>
+			<scope>compile</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+			<version>2.4</version>
+		</dependency>
+        <dependency>
+            <groupId>org.apache.uima.xmlbeans</groupId>
+            <artifactId>jsr-173-api</artifactId>
+            <version>1.0</version>
+            <scope>system</scope>
+            <systemPath>${basedir}/lib/jsr173_1.0_api.jar</systemPath>
+        </dependency>
+        <dependency>
+			<groupId>local.xmlbeans.dependency</groupId>
+			<artifactId>xsdbeans</artifactId>
+			<version>2.2</version>
+			<scope>system</scope>
+			<systemPath>${basedir}/lib/xbean.jar</systemPath>
+		</dependency>
+        <dependency>
+            <groupId>org.apache.uima.xmlbeans</groupId>
+            <artifactId>uima-simple-server-xbean</artifactId>
+            <version>1.0</version>
+            <scope>system</scope>
+            <systemPath>${basedir}/lib/uima-simple-server-xbean.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.uima</groupId>
+            <artifactId>uima-simple-server</artifactId>
+            <version>1.0</version>
+            <scope>system</scope>
+            <systemPath>${basedir}/lib/uima-simple-server.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.uima</groupId>
+        	<artifactId>uimaj-as-core</artifactId>
+        	<version>2.3.0-incubating-SNAPSHOT</version>
+        	<scope>compile</scope>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.uima</groupId>
+        	<artifactId>uimaj-as-activemq</artifactId>
+        	<version>2.3.0-incubating-SNAPSHOT</version>
+        	<scope>compile</scope>
+        </dependency>
+	</dependencies>
+	<build>
+		<finalName>simple-uima-as-service</finalName>
+		<resources></resources>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+					   <plugin>
+		        <groupId>org.codehaus.mojo</groupId>
+		        <artifactId>buildnumber-maven-plugin</artifactId>
+		        <executions>
+		          <execution>
+		            <phase>process-classes</phase>
+		            <goals>
+		              <goal>create</goal>
+		            </goals>
+		          </execution>
+		        </executions>
+		        <configuration>
+		          <format>{0,date,yyyy-MM-dd HH:mm:ss}</format>
+		          <items>
+		            <item>timestamp</item>
+		          </items>
+		        </configuration>
+	      	</plugin>
+      
+      		<plugin>
+				<artifactId>maven-antrun-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>CopyLicenseNoticeDisclaimer</id>
+						<phase>process-resources</phase>
+						<configuration>
+							<tasks>                    
+                				<copy todir="target/classes/META-INF">
+                  					<fileset dir="." includes="LICENSE.txt NOTICE.txt DISCLAIMER"/>
+                				</copy>
+							</tasks>
+						</configuration>
+						<goals>
+							<goal>run</goal>
+						</goals>
+					</execution>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                    </execution>
+				</executions>
+			</plugin>
+              
+	        <plugin>
+		        <groupId>org.apache.maven.plugins</groupId>
+		        <artifactId>maven-jar-plugin</artifactId>
+		        <configuration>
+		          <archive>
+		            <manifestEntries>
+		              <Project-Title>Apache UIMA</Project-Title>
+		              <Implementation-Title>${pom.name}</Implementation-Title>
+		              <Implementation-Version>${pom.version}</Implementation-Version>
+		              <Implementation-Vendor>Apache Software Foundation</Implementation-Vendor>
+		              <Implementation-Url>${pom.url}</Implementation-Url>
+					        <Implementation-License>http://www.apache.org/licenses/LICENSE-2.0.txt</Implementation-License>
+		              <Build-Date>${buildNumber}</Build-Date>
+		            </manifestEntries>
+		          </archive>
+		        </configuration>
+      		</plugin> 
+			
+		</plugins>
+	</build>
+
+	<repositories>
+		<repository>
+			<id>ApacheIncubatorRepository</id>
+			<url>
+				http://people.apache.org/repo/m2-incubating-repository/
+			</url>
+		</repository>
+	</repositories>
+</project>
+