You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by ja...@apache.org on 2017/03/24 21:08:57 UTC

svn commit: r1788547 - /ctakes/trunk/ctakes-constituency-parser/scripts/groovy/parser.groovy

Author: james-masanz
Date: Fri Mar 24 21:08:57 2017
New Revision: 1788547

URL: http://svn.apache.org/viewvc?rev=1788547&view=rev
Log:
update for cTAKES 4.0  CTAKES-355 and no longer need to get opennlp grape separately CTAKES-417

Modified:
    ctakes/trunk/ctakes-constituency-parser/scripts/groovy/parser.groovy

Modified: ctakes/trunk/ctakes-constituency-parser/scripts/groovy/parser.groovy
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-constituency-parser/scripts/groovy/parser.groovy?rev=1788547&r1=1788546&r2=1788547&view=diff
==============================================================================
--- ctakes/trunk/ctakes-constituency-parser/scripts/groovy/parser.groovy (original)
+++ ctakes/trunk/ctakes-constituency-parser/scripts/groovy/parser.groovy Fri Mar 24 21:08:57 2017
@@ -28,35 +28,31 @@
 ** 	Or enable more verbose status $groovy -Dgroovy.grape.report.downloads=true parser.groovy [inputDir]
 **/
 
-// The @GrabResolver opennlp.sf.net is needed temporarily, until we use OpenNLP 1.5.3 or later. See CTAKES-276.
-// It should be removed once CTAKES-191 "Update Apache OpenNLP dependency to 1.5.3" is implemented.
-@GrabResolver(name='opennlp.sf.net',
-      root='http://opennlp.sourceforge.net/maven2')
       
 @Grab(group='org.apache.ctakes',
       module='ctakes-core',
-            version='3.2.0')
+            version='4.0.0')
 @Grab(group='org.apache.ctakes',
       module='ctakes-core-res',
-            version='3.2.0')			
+            version='4.0.0')			
 @Grab(group='org.apache.ctakes',
       module='ctakes-constituency-parser',
-            version='3.2.0')
+            version='4.0.0')
 @Grab(group='org.apache.ctakes',
       module='ctakes-constituency-parser-res',
-            version='3.2.0')
+            version='4.0.0')
 @Grab(group='org.cleartk',
       module='cleartk-util',
       version='0.9.2')
       
 @Grab(group='org.apache.uima',
       module='uimafit-core',
-      version='2.1.0')
+      version='2.2.0')
 
 /*
 @Grab(group='org.apache.ctakes',
       module='ctakes-clinical-pipeline',
-            version='3.2.0')
+            version='4.0.0')
 */
           
 import java.io.File;