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/08/24 16:56:08 UTC

svn commit: r807256 - in /incubator/uima/sandbox/trunk/PearPackagingAntTask: DISCLAIMER pom.xml

Author: schor
Date: Mon Aug 24 14:56:08 2009
New Revision: 807256

URL: http://svn.apache.org/viewvc?rev=807256&view=rev
Log:
[UIMA-1501]

Added:
    incubator/uima/sandbox/trunk/PearPackagingAntTask/DISCLAIMER
Modified:
    incubator/uima/sandbox/trunk/PearPackagingAntTask/pom.xml

Added: incubator/uima/sandbox/trunk/PearPackagingAntTask/DISCLAIMER
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/PearPackagingAntTask/DISCLAIMER?rev=807256&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/PearPackagingAntTask/DISCLAIMER (added)
+++ incubator/uima/sandbox/trunk/PearPackagingAntTask/DISCLAIMER Mon Aug 24 14:56:08 2009
@@ -0,0 +1,7 @@
+Apache UIMA is an effort undergoing incubation at The Apache Software
+Foundation (ASF). Incubation is required of all newly accepted projects
+until a further review indicates that the infrastructure, communications,
+and decision making process have stabilized in a manner consistent with
+other successful ASF projects. While incubation status is not necessarily
+a reflection of the completeness or stability of the code, it does
+indicate that the project has yet to be fully endorsed by the ASF.

Modified: incubator/uima/sandbox/trunk/PearPackagingAntTask/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/PearPackagingAntTask/pom.xml?rev=807256&r1=807255&r2=807256&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/PearPackagingAntTask/pom.xml (original)
+++ incubator/uima/sandbox/trunk/PearPackagingAntTask/pom.xml Mon Aug 24 14:56:08 2009
@@ -23,13 +23,18 @@
 	<artifactId>PearPackagingAntTask</artifactId>
 	<name>Apache UIMA PEAR packaging ANT task</name>
 	<version>2.3.0-incubating-SNAPSHOT</version>
-	<url>http://incubator.apache.org/uima</url>
+  
+  <parent>
+    <groupId>org.apache.uima</groupId>
+    <artifactId>SandboxDistr</artifactId>
+    <version>2.3.0-incubating-SNAPSHOT</version> <!-- this comment is a flag for changeVersion -->
+    <relativePath>../uimaj</relativePath>
+  </parent>
+  
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.uima</groupId>
 			<artifactId>uimaj-core</artifactId>
-			<version>2.3.0-incubating-SNAPSHOT</version>
-			<scope>compile</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.ant</groupId>
@@ -38,130 +43,8 @@
 		</dependency>
 	</dependencies>
 	
-	<build>
-		<finalName>uima-pear-ant-task</finalName>
-		
-		<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="src/main/resources/META-INF">
-                  					<fileset dir="." includes="LICENSE NOTICE DISCLAIMER"/>
-                				</copy>
-                				<copy todir="target/classes/META-INF">
-                  					<fileset dir="." includes="LICENSE.txt NOTICE.txt DISCLAIMER"/>
-                				</copy>
-							</tasks>
-						</configuration>
-						<goals>
-							<goal>run</goal>
-						</goals>
-					</execution>
-					<!-- after compilation has been done and the files have been copied to the
-						 target directory, delete them from the source directory. -->
-					<execution>
-						<id>DeleteLicenseNoticeDisclaimer</id>
-						<phase>package</phase>
-						<configuration>
-							<tasks>
-								<delete dir="src/main/resources/META-INF" deleteOnExit="true" quiet="true" failOnError="false">
-									<fileset dir="src/main/resources/META-INF"
-										includes="LICENSE NOTICE DISCLAIMER"/>
-								</delete>
-							</tasks>
-						</configuration>
-						<goals>
-							<goal>run</goal>
-						</goals>
-					</execution>	
-					<!-- also delete on clean. -->
-					<execution>
-						<id>CleanLicenseNoticeDisclaimer</id>
-						<phase>clean</phase>
-						<configuration>
-							<tasks>
-								<delete dir="src/main/resources/META-INF" deleteOnExit="true" quiet="true" failOnError="false">
-									<fileset dir="src/main/resources/META-INF"
-										includes="LICENSE NOTICE DISCLAIMER"/>
-								</delete>
-							</tasks>
-						</configuration>
-						<goals>
-							<goal>run</goal>
-						</goals>
-					</execution>
-					<execution>
-						<phase>package</phase>
-						<configuration>
-							<tasks>
-								<ant antfile="build_documentation.xml" target="copyDocs"/>
-							</tasks>
-						</configuration>
-						<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>
-	
+  <build>
+    <finalName>uima-pear-ant-task</finalName>
+  </build>
+		
 </project>
\ No newline at end of file