Revision: 19830
          http://sourceforge.net/p/gate/code/19830
Author:   markagreenwood
Date:     2016-11-28 09:39:52 +0000 (Mon, 28 Nov 2016)
Log Message:
-----------
cleaned imports and added the pom

Modified Paths:
--------------
    
gate/branches/sawdust2/plugins/Alignment/src/main/java/gate/composite/impl/SegmentProcessingPR.java

Added Paths:
-----------
    gate/branches/sawdust2/plugins/Alignment/pom.xml

Added: gate/branches/sawdust2/plugins/Alignment/pom.xml
===================================================================
--- gate/branches/sawdust2/plugins/Alignment/pom.xml                            
(rev 0)
+++ gate/branches/sawdust2/plugins/Alignment/pom.xml    2016-11-28 09:39:52 UTC 
(rev 19830)
@@ -0,0 +1,38 @@
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+       
+       <modelVersion>4.0.0</modelVersion>
+
+       <parent>
+               <groupId>uk.ac.gate.plugins</groupId>
+               <artifactId>base-plugin</artifactId>
+               <!-- this should be the version of GATE you wish to build 
against -->
+               <version>9.0-SNAPSHOT</version>
+               <relativePath>../../Plugin_Base/pom.xml</relativePath>
+       </parent>       
+       
+       <!-- this is the description of this plugin -->
+       <groupId>uk.ac.gate.plugins</groupId>
+       <artifactId>alignment</artifactId>
+       <version>9.0-SNAPSHOT</version>
+
+       <licenses>
+               <license>
+                       <name>GNU Lesser General Public License (LGPL), Version 
3</name>
+                       <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
+                       <distribution>repo</distribution>
+               </license>
+       </licenses>
+
+       <organization>
+               <name>GATE</name>
+               <url>http://gate.ac.uk</url>
+       </organization>
+
+       <dependencies>
+               <!-- add any other libraries your plugin depends on. Any other 
GATE plugins 
+                       you depend on at compile time should use the provided 
scope -->
+       </dependencies>
+
+</project>

Modified: 
gate/branches/sawdust2/plugins/Alignment/src/main/java/gate/composite/impl/SegmentProcessingPR.java
===================================================================
--- 
gate/branches/sawdust2/plugins/Alignment/src/main/java/gate/composite/impl/SegmentProcessingPR.java
 2016-11-28 09:39:04 UTC (rev 19829)
+++ 
gate/branches/sawdust2/plugins/Alignment/src/main/java/gate/composite/impl/SegmentProcessingPR.java
 2016-11-28 09:39:52 UTC (rev 19830)
@@ -1,5 +1,11 @@
 package gate.composite.impl;
 
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
 import gate.Annotation;
 import gate.AnnotationSet;
 import gate.Corpus;
@@ -10,7 +16,6 @@
 import gate.Gate;
 import gate.LanguageAnalyser;
 import gate.ProcessingResource;
-import gate.Resource;
 import gate.composite.CombiningMethod;
 import gate.composite.CombiningMethodException;
 import gate.composite.CompositeDocument;
@@ -24,12 +29,6 @@
 import gate.util.OffsetComparator;
 import gate.util.Out;
 
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
 /**
  * As the name suggests, the PR is useful processing segments of the text. 
Given
  * a analyser, annotation type and a document, this PR creates a composite

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to