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

svn commit: r1853406 - in /uima/uima-ducc/trunk: uima-ducc-cli/pom.xml uima-ducc-parent/pom.xml

Author: cwiklik
Date: Mon Feb 11 21:28:27 2019
New Revision: 1853406

URL: http://svn.apache.org/viewvc?rev=1853406&view=rev
Log:
UIMA-5972 

Modified:
    uima/uima-ducc/trunk/uima-ducc-cli/pom.xml
    uima/uima-ducc/trunk/uima-ducc-parent/pom.xml

Modified: uima/uima-ducc/trunk/uima-ducc-cli/pom.xml
URL: http://svn.apache.org/viewvc/uima/uima-ducc/trunk/uima-ducc-cli/pom.xml?rev=1853406&r1=1853405&r2=1853406&view=diff
==============================================================================
--- uima/uima-ducc/trunk/uima-ducc-cli/pom.xml (original)
+++ uima/uima-ducc/trunk/uima-ducc-cli/pom.xml Mon Feb 11 21:28:27 2019
@@ -112,7 +112,13 @@ uima-ducc/uima-ducc-cli-${ducc.version}.
     <plugins>
       <plugin>
         <artifactId>maven-jar-plugin</artifactId>
-
+        <!-- ****************************************************************************** -->
+        <!-- IMPORTANT! Had to downgrade to v.2.6 to be able to generate two jars (one of which is a manifest only jar). 
+             The newer versions of the plugin (3.X.X) are not allowing the pluging to execute more than once with 
+             <goal>jar</goal> throwing an error 
+            "...You have to use a classifier to attach supplemental artifacts to the project instead of replacing them."
+        -->
+        <version>2.6</version>
         <executions>
 
 		  <!-- Create a manifest-only jar that will be placed up one level under <ducc-home>/lib -->

Modified: uima/uima-ducc/trunk/uima-ducc-parent/pom.xml
URL: http://svn.apache.org/viewvc/uima/uima-ducc/trunk/uima-ducc-parent/pom.xml?rev=1853406&r1=1853405&r2=1853406&view=diff
==============================================================================
--- uima/uima-ducc/trunk/uima-ducc-parent/pom.xml (original)
+++ uima/uima-ducc/trunk/uima-ducc-parent/pom.xml Mon Feb 11 21:28:27 2019
@@ -823,6 +823,7 @@ ${uimaDUCCNoticeText}
 		<plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.10.4</version>
           <configuration>
 
             <source>${maven.compiler.source}</source>
@@ -873,12 +874,11 @@ ${uimaDUCCNoticeText}
 				</configuration>
 			</plugin>
 			<!-- Each jar produced should have metadata attached to a Manifest -->
-			<plugin>
+			<!--plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-jar-plugin</artifactId>
 				<configuration>
 					<archive>
-						<!-- index>true</index -->
 						<manifest>
 							<addClasspath>false</addClasspath>
 						</manifest>
@@ -892,7 +892,7 @@ ${uimaDUCCNoticeText}
 						</manifestEntries>
 					</archive>
 				</configuration>
-			</plugin>
+			</plugin-->
 		</plugins>
 
 	</build>