Skip to content

Commit 212d4ba

Browse files
committed
Update to new snapshot version
1 parent 583aa9b commit 212d4ba

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

groovy/generateGazBin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import gate.*;
66
Gate.init();
77

88
// Load the plugin the class we want to use is in
9-
Gate.getCreoleRegister().registerPlugin(new Plugin.Maven("uk.ac.gate.plugins","stringannotation","4.1-SNAPSHOT"));
9+
Gate.getCreoleRegister().registerPlugin(new Plugin.Maven("uk.ac.gate.plugins","stringannotation","4.2-SNAPSHOT"));
1010

1111
// Get an instance of the class we want access to.
1212
def cacheGenerator = Gate.getClassLoader().loadClass("com.jpetrak.gate.stringannotation.extendedgazetteer.GenerateCache");

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<url>https://github.com/johann-petrak/gateplugin-StringAnnotation</url>
1010
<groupId>uk.ac.gate.plugins</groupId>
1111
<artifactId>stringannotation</artifactId>
12-
<version>4.1-SNAPSHOT</version><!-- PLUGINVERSION -->
12+
<version>4.2-SNAPSHOT</version><!-- PLUGINVERSION -->
1313
<organization>
1414
<name>GATE Team</name>
1515
<url>http://gate.ac.uk</url>

runner/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</description>
66
<groupId>uk.ac.gate.plugins.runner</groupId>
77
<artifactId>stringannotation-runner</artifactId>
8-
<version>4.1-SNAPSHOT</version><!-- PLUGINVERSION -->
8+
<version>4.2-SNAPSHOT</version><!-- PLUGINVERSION -->
99
<organization>
1010
<name>GATE Team</name>
1111
<url>http://gate.ac.uk</url>
@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>uk.ac.gate.plugins</groupId>
6060
<artifactId>stringannotation</artifactId>
61-
<version>4.1-SNAPSHOT</version>
61+
<version>4.2-SNAPSHOT</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>uk.ac.gate</groupId>

src/main/java/com/jpetrak/gate/stringannotation/extendedgazetteer/GenerateCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static void main(String[] args) {
7676
System.exit(1);
7777
}
7878
try {
79-
Gate.getCreoleRegister().registerPlugin(new Plugin.Maven("uk.ac.gate.plugins","stringannotation","4.1-SNAPSHOT"));
79+
Gate.getCreoleRegister().registerPlugin(new Plugin.Maven("uk.ac.gate.plugins","stringannotation","4.2-SNAPSHOT"));
8080
} catch (GateException ex) {
8181
System.err.println("Could not register plugin") ;
8282
ex.printStackTrace(System.err);

tests/init.xgapp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<gate.creole.Plugin-Maven>
66
<group>uk.ac.gate.plugins</group>
77
<artifact>stringannotation</artifact>
8-
<version>4.1-SNAPSHOT</version>
8+
<version>4.2-SNAPSHOT</version>
99
</gate.creole.Plugin-Maven>
1010
</localList>
1111
<collectionType>java.util.ArrayList</collectionType>

tests/testJavaRegexpAnn.xgapp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<gate.creole.Plugin-Maven>
66
<group>uk.ac.gate.plugins</group>
77
<artifact>stringannotation</artifact>
8-
<version>4.1-SNAPSHOT</version>
8+
<version>4.2-SNAPSHOT</version>
99
</gate.creole.Plugin-Maven>
1010
</localList>
1111
<collectionType>java.util.ArrayList</collectionType>

0 commit comments

Comments
 (0)