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/10/02 06:37:08 UTC

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

Author: tommaso
Date: Fri Oct  2 04:37:08 2009
New Revision: 820882

URL: http://svn.apache.org/viewvc?rev=820882&view=rev
Log:
[UIMA-1462] - SimpleUimaAsService has checked in SimpleServer libraries as binaries

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

Modified: incubator/uima/sandbox/trunk/SimpleUimaAsService/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/SimpleUimaAsService/pom.xml?rev=820882&r1=820881&r2=820882&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/SimpleUimaAsService/pom.xml (original)
+++ incubator/uima/sandbox/trunk/SimpleUimaAsService/pom.xml Fri Oct  2 04:37:08 2009
@@ -73,6 +73,68 @@
 					<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>