You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by al...@apache.org on 2007/03/05 20:01:50 UTC

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

Author: alally
Date: Mon Mar  5 11:01:49 2007
New Revision: 514813

URL: http://svn.apache.org/viewvc?view=rev&rev=514813
Log:
Fix legal issues for Maven artifact packaging.
UIMA-333: https://issues.apache.org/jira/browse/UIMA-333

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

Modified: incubator/uima/uimaj/trunk/uimaj/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj/pom.xml?view=diff&rev=514813&r1=514812&r2=514813
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj/pom.xml (original)
+++ incubator/uima/uimaj/trunk/uimaj/pom.xml Mon Mar  5 11:01:49 2007
@@ -27,7 +27,17 @@
 	<version>2.2-incubating-SNAPSHOT</version>
 	<name>Apache UIMA Java SDK</name>
 	<url>http://incubator.apache.org/uima</url>
-	<organization><name>The Apache Software Foundation</name></organization>
+	<licenses>
+		<license>
+			<name>The Apache Software License, Version 2.0</name>
+			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+			<distribution>repo</distribution>
+		</license>
+	</licenses>
+	<organization>
+		<name>The Apache Software Foundation</name>
+		<url>http://www.apache.org/</url>
+	</organization>
 	<dependencies>
 		<dependency>
 			<groupId>junit</groupId>
@@ -55,7 +65,19 @@
 					<target>1.4</target>
 				</configuration>
 			</plugin>
-		</plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <systemProperties>
+            <property>
+              <name>java.util.logging.config.file</name>
+              <value>${basedir}/../uimaj-distr/src/main/config/Logger.properties</value>
+            </property>
+          </systemProperties>
+        </configuration>
+      </plugin>
+ 		</plugins>
 	</build>
 	<reporting>
 		<plugins>