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 2016/11/07 16:15:29 UTC

svn commit: r1768544 - in /uima/uimaj: branches/experiment-v3-jcas/uimaj-core/pom.xml uimaj-v3migration-jcas/pom.xml

Author: schor
Date: Mon Nov  7 16:15:29 2016
New Revision: 1768544

URL: http://svn.apache.org/viewvc?rev=1768544&view=rev
Log:
[UIMA-5172] change dependencies for java decompiling in uimaj-core - only depends on procyon-compilertoos and procyon-core. Change dependencies for v3migration - only depend on javaparser

Modified:
    uima/uimaj/branches/experiment-v3-jcas/uimaj-core/pom.xml
    uima/uimaj/uimaj-v3migration-jcas/pom.xml

Modified: uima/uimaj/branches/experiment-v3-jcas/uimaj-core/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/branches/experiment-v3-jcas/uimaj-core/pom.xml?rev=1768544&r1=1768543&r2=1768544&view=diff
==============================================================================
--- uima/uimaj/branches/experiment-v3-jcas/uimaj-core/pom.xml (original)
+++ uima/uimaj/branches/experiment-v3-jcas/uimaj-core/pom.xml Mon Nov  7 16:15:29 2016
@@ -82,14 +82,21 @@
     </dependency>
     -->
     
-    <dependency>
+    <!-- needed for UimaDecompiler class-->
+    <dependency>  <!-- Apache v2 license  2016 checked -->
       <groupId>org.bitbucket.mstrobel</groupId>
       <artifactId>procyon-compilertools</artifactId>
       <version>0.5.28</version>
     </dependency>
     
+    <dependency>  <!-- Apache v2 license  2016 checked. Also transitive include from above, listed here for bin inclusion -->
+      <groupId>org.bitbucket.mstrobel</groupId>
+      <artifactId>procyon-core</artifactId>
+      <version>0.5.28</version>
+    </dependency>
+    
     <!-- for reading / transforming / generating JCas cover classes -->
-    <dependency>
+<!--     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm</artifactId>
       <version>5.0.4</version>
@@ -100,17 +107,8 @@
       <artifactId>asm-tree</artifactId>
       <version>5.0.4</version>
     </dependency>
-		
-		<!-- This next dependency is used to enable findbug rule suppression annotations
-		     Currently commented out - till more thought given to this. 
-		     For instance, we don't want to accidentally distribute this dependency in builds
-		<dependency>
-			<groupId>com.google.code.findbugs</groupId>
-			<artifactId>annotations</artifactId>
-			<version>2.0.0</version>
-			<scope>compile</scope>
-		</dependency>
-		 -->
+ -->		
+
 	</dependencies>
 	<build>
 		<finalName>uima-core</finalName>

Modified: uima/uimaj/uimaj-v3migration-jcas/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/uimaj-v3migration-jcas/pom.xml?rev=1768544&r1=1768543&r2=1768544&view=diff
==============================================================================
--- uima/uimaj/uimaj-v3migration-jcas/pom.xml (original)
+++ uima/uimaj/uimaj-v3migration-jcas/pom.xml Mon Nov  7 16:15:29 2016
@@ -62,31 +62,31 @@
       <version>${project.parent.version}</version>
       <scope>test</scope>
     </dependency>
-    <dependency>
+    <dependency>    <!-- apache v2 license  2016 checked -->
       <groupId>com.github.javaparser</groupId>
       <artifactId>javaparser-core</artifactId>
       <version>2.3.0</version>
     </dependency>
     
-    <dependency>
+<!--     <dependency>     is included from uimaj-core, not needed for this project
       <groupId>org.bitbucket.mstrobel</groupId>
       <artifactId>procyon-compilertools</artifactId>
       <version>0.5.28</version>
     </dependency>
-    
+ -->    
     <!-- for reading / transforming / generating JCas cover classes -->
-    <dependency>
+<!--     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm</artifactId>
       <version>5.0.4</version>
     </dependency>
-
+ 
     <dependency>
       <groupId>org.ow2.asm</groupId>
       <artifactId>asm-tree</artifactId>
       <version>5.0.4</version>
     </dependency>
-    
+    -->
   </dependencies>
   
   <build>