You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2009/09/02 21:27:14 UTC

svn commit: r810676 - /incubator/uima/uimaj/trunk/uimaj-bootstrap/pom.xml

Author: schor
Date: Wed Sep  2 19:27:13 2009
New Revision: 810676

URL: http://svn.apache.org/viewvc?rev=810676&view=rev
Log:
[UIMA-1536] add manifest entry to make jar runnable with -jar 

Modified:
    incubator/uima/uimaj/trunk/uimaj-bootstrap/pom.xml

Modified: incubator/uima/uimaj/trunk/uimaj-bootstrap/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-bootstrap/pom.xml?rev=810676&r1=810675&r2=810676&view=diff
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-bootstrap/pom.xml (original)
+++ incubator/uima/uimaj/trunk/uimaj-bootstrap/pom.xml Wed Sep  2 19:27:13 2009
@@ -34,4 +34,26 @@
     <relativePath>../uimaj</relativePath>
 	</parent>
   
+  <build>
+    <plugins>
+      <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>
+              <Main-Class>org.apache.uima.bootstrap.UimaBootstrap</Main-Class>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>
\ No newline at end of file