From: <mar...@us...> - 2017-02-07 20:01:24
|
Revision: 20073 http://sourceforge.net/p/gate/code/20073 Author: markagreenwood Date: 2017-02-07 20:01:21 +0000 (Tue, 07 Feb 2017) Log Message: ----------- another mavenized plugin done Modified Paths: -------------- gate/branches/sawdust2/plugins/Lang_Welsh/.classpath gate/branches/sawdust2/plugins/Lang_Welsh/.project gate/branches/sawdust2/plugins/Lang_Welsh/src/main/resources/resources/CYMRIE.xgapp Added Paths: ----------- gate/branches/sawdust2/plugins/Lang_Welsh/pom.xml gate/branches/sawdust2/plugins/Lang_Welsh/src/main/ gate/branches/sawdust2/plugins/Lang_Welsh/src/main/java/ gate/branches/sawdust2/plugins/Lang_Welsh/src/main/java/wnlt/ gate/branches/sawdust2/plugins/Lang_Welsh/src/main/resources/ gate/branches/sawdust2/plugins/Lang_Welsh/src/main/resources/creole.xml gate/branches/sawdust2/plugins/Lang_Welsh/src/main/resources/gate/ gate/branches/sawdust2/plugins/Lang_Welsh/src/main/resources/resources/ Removed Paths: ------------- gate/branches/sawdust2/plugins/Lang_Welsh/build.xml gate/branches/sawdust2/plugins/Lang_Welsh/creole.xml gate/branches/sawdust2/plugins/Lang_Welsh/resources/ gate/branches/sawdust2/plugins/Lang_Welsh/src/gate/ gate/branches/sawdust2/plugins/Lang_Welsh/src/wnlt/ Property Changed: ---------------- gate/branches/sawdust2/plugins/Lang_Welsh/ Index: gate/branches/sawdust2/plugins/Lang_Welsh =================================================================== --- gate/branches/sawdust2/plugins/Lang_Welsh 2017-02-07 19:27:09 UTC (rev 20072) +++ gate/branches/sawdust2/plugins/Lang_Welsh 2017-02-07 20:01:21 UTC (rev 20073) Property changes on: gate/branches/sawdust2/plugins/Lang_Welsh ___________________________________________________________________ Modified: svn:ignore ## -1,2 +1,2 ## -classes -wnlt.jar +target +.settings Modified: gate/branches/sawdust2/plugins/Lang_Welsh/.classpath =================================================================== --- gate/branches/sawdust2/plugins/Lang_Welsh/.classpath 2017-02-07 19:27:09 UTC (rev 20072) +++ gate/branches/sawdust2/plugins/Lang_Welsh/.classpath 2017-02-07 20:01:21 UTC (rev 20073) @@ -1,7 +1,31 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> - <classpathentry kind="src" path="src"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> - <classpathentry combineaccessrules="false" kind="src" path="/GATE"/> - <classpathentry kind="output" path="classes"/> + <classpathentry kind="src" output="target/classes" path="src/main/java"> + <attributes> + <attribute name="optional" value="true"/> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"> + <attributes> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="src" output="target/test-classes" path="src/test/java"> + <attributes> + <attribute name="optional" value="true"/> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"> + <attributes> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> + <attributes> + <attribute name="maven.pomderived" value="true"/> + </attributes> + </classpathentry> + <classpathentry kind="output" path="target/classes"/> </classpath> Modified: gate/branches/sawdust2/plugins/Lang_Welsh/.project =================================================================== --- gate/branches/sawdust2/plugins/Lang_Welsh/.project 2017-02-07 19:27:09 UTC (rev 20072) +++ gate/branches/sawdust2/plugins/Lang_Welsh/.project 2017-02-07 20:01:21 UTC (rev 20073) @@ -10,8 +10,14 @@ <arguments> </arguments> </buildCommand> + <buildCommand> + <name>org.eclipse.m2e.core.maven2Builder</name> + <arguments> + </arguments> + </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> + <nature>org.eclipse.m2e.core.maven2Nature</nature> </natures> </projectDescription> Deleted: gate/branches/sawdust2/plugins/Lang_Welsh/build.xml =================================================================== --- gate/branches/sawdust2/plugins/Lang_Welsh/build.xml 2017-02-07 19:27:09 UTC (rev 20072) +++ gate/branches/sawdust2/plugins/Lang_Welsh/build.xml 2017-02-07 20:01:21 UTC (rev 20073) @@ -1,92 +0,0 @@ -<project name="Lang_Welsh" basedir="." default="jar"> - <!-- Prevent Ant from warning about includeantruntime not being set --> - <property name="build.sysclasspath" value="ignore" /> - - <property file="build.properties" /> - - <property name="gate.home" location="../../" /> - <property name="gate.lib" location="${gate.home}/lib" /> - <property name="gate.jar" location="${gate.home}/bin/gate.jar" /> - - <property name="src.dir" location="src" /> - <property name="classes.dir" location="classes" /> - <property name="jar.location" location="wnlt.jar" /> - <property name="doc.dir" location="doc" /> - <property name="javadoc.dir" location="${doc.dir}/javadoc" /> - <property name="gate.compile.maxwarnings" value="10000" /> - - <!-- Path to compile - includes gate.jar and GATE/lib/*.jar --> - <path id="compile.classpath"> - <pathelement location="${gate.jar}" /> - <fileset dir="${gate.lib}" includes="*.jar" /> - </path> - - <!-- create build directory structure --> - <target name="prepare"> - <mkdir dir="${classes.dir}" /> - </target> - - <!-- compile the source --> - <target name="compile" depends="prepare"> - <javac classpathref="compile.classpath" - srcdir="${src.dir}" - destdir="${classes.dir}" - debug="true" - debuglevel="lines,source" - encoding="UTF-8" - source="1.6" - target="1.6"> - <compilerarg value="-Xmaxwarns" /> - <compilerarg value="${gate.compile.maxwarnings}" /> - <compilerarg value="-Xlint:all" /> - </javac> - </target> - - <!-- copy resources (i.e. anything non-.java) from src to classes --> - <target name="copy.resources" depends="prepare"> - <copy todir="${classes.dir}" includeEmptyDirs="true"> - <fileset dir="${src.dir}" excludes="**/*.java" /> - </copy> - </target> - - <!-- create the JAR file --> - <target name="jar" depends="compile, copy.resources"> - <jar destfile="${jar.location}" update="false" basedir="${classes.dir}" /> - </target> - - <!-- remove the generated .class files --> - <target name="clean.classes"> - <delete dir="${classes.dir}" /> - </target> - - <!-- Clean up - remove .class and .jar files --> - <target name="clean" depends="clean.classes"> - <delete file="${jar.location}" /> - </target> - - <!-- Build JavaDoc documentation --> - <target name="doc.prepare"> - <mkdir dir="${javadoc.dir}" /> - </target> - - <target name="javadoc" depends="doc.prepare"> - <javadoc destdir="${javadoc.dir}" packagenames="*" classpathref="compile.classpath" encoding="UTF-8" windowtitle="${plugin.name} JavaDoc" source="1.6"> - <sourcepath> - <pathelement location="${src.dir}" /> - </sourcepath> - <link href="http://docs.oracle.com/javase/6/docs/api/" /> - <link href="http://gate.ac.uk/gate/doc/javadoc/" /> - </javadoc> - </target> - - <!-- Targets used by the main GATE build file: - build: build the plugin - just calls "jar" target - test : run the unit tests - there aren't any - distro.prepare: remove intermediate files that shouldn't be in the - distribution - --> - <target name="build" depends="jar" /> - <target name="test" /> - <target name="distro.prepare" depends="clean.classes" /> - -</project> Deleted: gate/branches/sawdust2/plugins/Lang_Welsh/creole.xml =================================================================== --- gate/branches/sawdust2/plugins/Lang_Welsh/creole.xml 2017-02-07 19:27:09 UTC (rev 20072) +++ gate/branches/sawdust2/plugins/Lang_Welsh/creole.xml 2017-02-07 20:01:21 UTC (rev 20073) @@ -1,10 +0,0 @@ -<?xml version="1.0"?> -<!-- $Id: creole.xml 30100 2016-03-19 10:00:45Z andreasvlachidis $ --> -<!-- creole.xml for Welsh Natural Language Toolkit PR--> -<CREOLE-DIRECTORY> - - <JAR SCAN="true">wnlt.jar</JAR> - <REQUIRES>../ANNIE</REQUIRES> - <REQUIRES>../Tools</REQUIRES> - -</CREOLE-DIRECTORY> Added: gate/branches/sawdust2/plugins/Lang_Welsh/pom.xml =================================================================== --- gate/branches/sawdust2/plugins/Lang_Welsh/pom.xml (rev 0) +++ gate/branches/sawdust2/plugins/Lang_Welsh/pom.xml 2017-02-07 20:01:21 UTC (rev 20073) @@ -0,0 +1,51 @@ + +<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>lang-welsh</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 --> + <dependency> + <groupId>uk.ac.gate.plugins</groupId> + <artifactId>annie</artifactId> + <version>9.0-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>uk.ac.gate.plugins</groupId> + <artifactId>tools</artifactId> + <version>9.0-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + </dependencies> + +</project> Copied: gate/branches/sawdust2/plugins/Lang_Welsh/src/main/resources/creole.xml (from rev 20070, gate/branches/sawdust2/plugins/Lang_Welsh/creole.xml) =================================================================== --- gate/branches/sawdust2/plugins/Lang_Welsh/src/main/resources/creole.xml (rev 0) +++ gate/branches/sawdust2/plugins/Lang_Welsh/src/main/resources/creole.xml 2017-02-07 20:01:21 UTC (rev 20073) @@ -0,0 +1,6 @@ +<?xml version="1.0"?> +<!-- creole.xml for Welsh Natural Language Toolkit PR--> +<CREOLE-DIRECTORY> + <REQUIRES GROUP="uk.ac.gate.plugins" ARTIFACT="annie" VERSION="9.0-SNAPSHOT"/> + <REQUIRES GROUP="uk.ac.gate.plugins" ARTIFACT="tools" VERSION="9.0-SNAPSHOT"/> +</CREOLE-DIRECTORY> Modified: gate/branches/sawdust2/plugins/Lang_Welsh/src/main/resources/resources/CYMRIE.xgapp =================================================================== --- gate/branches/sawdust2/plugins/Lang_Welsh/resources/CYMRIE.xgapp 2017-02-07 13:36:44 UTC (rev 20070) +++ gate/branches/sawdust2/plugins/Lang_Welsh/src/main/resources/resources/CYMRIE.xgapp 2017-02-07 20:01:21 UTC (rev 20073) @@ -1,17 +1,23 @@ <gate.util.persistence.GateApplication> <urlList class="gate.util.persistence.CollectionPersistence"> <localList> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$../../ANNIE</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$../../Tools</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$..</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> + <gate.creole.Plugin-Maven> + <group>uk.ac.gate.plugins</group> + <artifact>annie</artifact> + <version>9.0-SNAPSHOT</version> + </gate.creole.Plugin-Maven> + <gate.creole.Plugin-Maven> + <group>uk.ac.gate.plugins</group> + <artifact>tools</artifact> + <version>9.0-SNAPSHOT</version> + </gate.creole.Plugin-Maven> + <gate.creole.Plugin-Maven> + <group>uk.ac.gate.plugins</group> + <artifact>lang-welsh</artifact> + <version>9.0-SNAPSHOT</version> + </gate.creole.Plugin-Maven> </localList> - <collectionType>java.util.ArrayList</collectionType> + <collectionType>java.util.Collections$UnmodifiableSet</collectionType> </urlList> <application class="gate.util.persistence.ConditionalSerialAnalyserControllerPersistence"> <strategiesList class="gate.util.persistence.CollectionPersistence"> @@ -20,40 +26,10 @@ <runMode>1</runMode> <featureName></featureName> <featureValue></featureValue> - <pr class="gate.util.persistence.PRPersistence"> + <pr class="gate.util.persistence.LanguageAnalyserPersistence"> <runtimeParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>setsToKeep</string> - <gate.util.persistence.CollectionPersistence> - <localList> - <string>Key</string> - </localList> - <collectionType>java.util.ArrayList</collectionType> - </gate.util.persistence.CollectionPersistence> - </entry> - <entry> - <string>document</string> - <null/> - </entry> - <entry> - <string>annotationTypes</string> - <null/> - </entry> - <entry> - <string>corpus</string> - <null/> - </entry> - <entry> - <string>keepOriginalMarkupsAS</string> - <boolean>true</boolean> - </entry> - <entry> - <string>setsToRemove</string> - <null/> - </entry> - </localMap> + <localMap/> </runtimeParams> <resourceType>gate.creole.annotdelete.AnnotationDeletePR</resourceType> <resourceName>Document Reset</resourceName> @@ -74,43 +50,13 @@ <pr class="gate.util.persistence.LanguageAnalyserPersistence"> <runtimeParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>annotationSetName</string> - <null/> - </entry> - <entry> - <string>document</string> - <null/> - </entry> - <entry> - <string>corpus</string> - <null/> - </entry> - </localMap> + <localMap/> </runtimeParams> <resourceType>wnlt.WelshTokeniser</resourceType> <resourceName>Tokenizer</resourceName> <initParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>tokeniserRulesURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$Tokeniser/WelshTokeniser.rules</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - <entry> - <string>transducerGrammarURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$Tokeniser/postprocess.jape</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - <entry> - <string>encoding</string> - <string>UTF-8</string> - </entry> - </localMap> + <localMap/> </initParams> <features class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> @@ -125,47 +71,13 @@ <pr class="gate.util.persistence.LanguageAnalyserPersistence"> <runtimeParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>outputASName</string> - <null/> - </entry> - <entry> - <string>document</string> - <null/> - </entry> - <entry> - <string>corpus</string> - <null/> - </entry> - <entry> - <string>inputASName</string> - <null/> - </entry> - </localMap> + <localMap/> </runtimeParams> <resourceType>wnlt.WelshSentenceSplitter</resourceType> <resourceName>Sentence Splitter</resourceName> <initParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>encoding</string> - <string>UTF-8</string> - </entry> - <entry> - <string>gazetteerListsURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$sentenceSplitter/gazetteer/lists.def</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - <entry> - <string>transducerURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$sentenceSplitter/grammar/main-single-nl.jape</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - </localMap> + <localMap/> </initParams> <features class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> @@ -180,67 +92,13 @@ <pr class="gate.util.persistence.LanguageAnalyserPersistence"> <runtimeParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>document</string> - <null/> - </entry> - <entry> - <string>corpus</string> - <null/> - </entry> - <entry> - <string>outputAnnotationType</string> - <string>Token</string> - </entry> - <entry> - <string>failOnMissingInputAnnotations</string> - <boolean>true</boolean> - </entry> - <entry> - <string>inputASName</string> - <null/> - </entry> - <entry> - <string>outputASName</string> - <null/> - </entry> - <entry> - <string>baseSentenceAnnotationType</string> - <string>Sentence</string> - </entry> - <entry> - <string>posTagAllTokens</string> - <boolean>true</boolean> - </entry> - <entry> - <string>baseTokenAnnotationType</string> - <string>Token</string> - </entry> - </localMap> + <localMap/> </runtimeParams> <resourceType>wnlt.WelshPOSTagger</resourceType> <resourceName>Part of Speech Tagger</resourceName> <initParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>rulesURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$postag/ruleset</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - <entry> - <string>encoding</string> - <string>UTF-8</string> - </entry> - <entry> - <string>lexiconURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$postag/lexicon</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - </localMap> + <localMap/> </initParams> <features class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> @@ -255,81 +113,13 @@ <pr class="gate.util.persistence.PRPersistence"> <runtimeParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>considerPOSTag</string> - <boolean>true</boolean> - </entry> - <entry> - <string>document</string> - <null/> - </entry> - <entry> - <string>corpus</string> - <null/> - </entry> - <entry> - <string>rootFeatureName</string> - <string>lemma</string> - </entry> - <entry> - <string>annotationSetName</string> - <null/> - </entry> - <entry> - <string>failOnMissingInputAnnotations</string> - <boolean>true</boolean> - </entry> - <entry> - <string>affixFeatureName</string> - <string>affix</string> - </entry> - </localMap> + <localMap/> </runtimeParams> <resourceType>wnlt.morph.WelshMorph</resourceType> <resourceName>Morphological Analyser</resourceName> <initParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>caseSensitive</string> - <boolean>false</boolean> - </entry> - <entry> - <string>encoding</string> - <string>UTF-8</string> - </entry> - <entry> - <string>gazetteerListsURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$morph/gazetteer/lists.def</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - <entry> - <string>rulesFile</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$morph/default.rul</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - <entry> - <string>transducerURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$morph/grammar/postprocess.jape</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - <entry> - <string>validationTransducerURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$morph/grammar/validation-main.jape</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - <entry> - <string>lexiconURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$morph/lexicon</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - </localMap> + <localMap/> </initParams> <features class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> @@ -346,22 +136,6 @@ <mapType>gate.util.SimpleFeatureMapImpl</mapType> <localMap> <entry> - <string>wholeWordsOnly</string> - <boolean>true</boolean> - </entry> - <entry> - <string>longestMatchOnly</string> - <boolean>true</boolean> - </entry> - <entry> - <string>document</string> - <null/> - </entry> - <entry> - <string>corpus</string> - <null/> - </entry> - <entry> <string>annotationSetName</string> <string></string> </entry> @@ -371,26 +145,7 @@ <resourceName>CYMRIE Gazetter</resourceName> <initParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>listsURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$gazetteer/lists.def</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - <entry> - <string>encoding</string> - <string>UTF-8</string> - </entry> - <entry> - <string>gazetteerFeatureSeparator</string> - <string>:</string> - </entry> - <entry> - <string>caseSensitive</string> - <boolean>true</boolean> - </entry> - </localMap> + <localMap/> </initParams> <features class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> @@ -402,30 +157,11 @@ <runMode>1</runMode> <featureName></featureName> <featureValue></featureValue> - <pr class="gate.util.persistence.PRPersistence"> + <pr class="gate.util.persistence.LanguageAnalyserPersistence"> <runtimeParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> <localMap> <entry> - <string>outputASName</string> - <null/> - </entry> - <entry> - <string>document</string> - <null/> - </entry> - <entry> - <string>inputASName</string> - <null/> - </entry> - </localMap> - </runtimeParams> - <resourceType>gate.creole.gazetteer.FlexibleGazetteer</resourceType> - <resourceName>CYMRIE Flexible Gazetteer</resourceName> - <initParams class="gate.util.persistence.MapPersistence"> - <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> <string>inputFeatureNames</string> <gate.util.persistence.CollectionPersistence> <localList> @@ -440,6 +176,12 @@ <gate.util.persistence.LanguageAnalyserPersistence reference="../../../../../../gate.util.persistence.AnalyserRunningStrategyPersistence[6]/pr"/> </entry> </localMap> + </runtimeParams> + <resourceType>gate.creole.gazetteer.FlexibleGazetteer</resourceType> + <resourceName>CYMRIE Flexible Gazetteer</resourceName> + <initParams class="gate.util.persistence.MapPersistence"> + <mapType>gate.util.SimpleFeatureMapImpl</mapType> + <localMap/> </initParams> <features class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> @@ -454,53 +196,13 @@ <pr class="gate.util.persistence.LanguageAnalyserPersistence"> <runtimeParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>outputASName</string> - <null/> - </entry> - <entry> - <string>document</string> - <null/> - </entry> - <entry> - <string>corpus</string> - <null/> - </entry> - <entry> - <string>inputASName</string> - <null/> - </entry> - <entry> - <string>enableDebugging</string> - <boolean>false</boolean> - </entry> - </localMap> + <localMap/> </runtimeParams> <resourceType>wnlt.WelshNE</resourceType> <resourceName>NE Transducer</resourceName> <initParams class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> - <localMap> - <entry> - <string>encoding</string> - <string>UTF-8</string> - </entry> - <entry> - <string>grammarURL</string> - <gate.util.persistence.PersistenceManager-URLHolder> - <urlString>$relpath$NE/main.jape</urlString> - </gate.util.persistence.PersistenceManager-URLHolder> - </entry> - <entry> - <string>annotationAccessors</string> - <null/> - </entry> - <entry> - <string>operators</string> - <null/> - </entry> - </localMap> + <localMap/> </initParams> <features class="gate.util.persistence.MapPersistence"> <mapType>gate.util.SimpleFeatureMapImpl</mapType> @@ -513,13 +215,13 @@ </strategiesList> <prList class="gate.util.persistence.CollectionPersistence"> <localList> - <gate.util.persistence.PRPersistence reference="../../../strategiesList/localList/gate.util.persistence.AnalyserRunningStrategyPersistence/pr"/> + <gate.util.persistence.LanguageAnalyserPersistence reference="../../../strategiesList/localList/gate.util.persistence.AnalyserRunningStrategyPersistence/pr"/> <gate.util.persistence.LanguageAnalyserPersistence reference="../../../strategiesList/localList/gate.util.persistence.AnalyserRunningStrategyPersistence[2]/pr"/> <gate.util.persistence.LanguageAnalyserPersistence reference="../../../strategiesList/localList/gate.util.persistence.AnalyserRunningStrategyPersistence[3]/pr"/> <gate.util.persistence.LanguageAnalyserPersistence reference="../../../strategiesList/localList/gate.util.persistence.AnalyserRunningStrategyPersistence[4]/pr"/> <gate.util.persistence.PRPersistence reference="../../../strategiesList/localList/gate.util.persistence.AnalyserRunningStrategyPersistence[5]/pr"/> <gate.util.persistence.LanguageAnalyserPersistence reference="../../../strategiesList/localList/gate.util.persistence.AnalyserRunningStrategyPersistence[6]/pr"/> - <gate.util.persistence.PRPersistence reference="../../../strategiesList/localList/gate.util.persistence.AnalyserRunningStrategyPersistence[7]/pr"/> + <gate.util.persistence.LanguageAnalyserPersistence reference="../../../strategiesList/localList/gate.util.persistence.AnalyserRunningStrategyPersistence[7]/pr"/> <gate.util.persistence.LanguageAnalyserPersistence reference="../../../strategiesList/localList/gate.util.persistence.AnalyserRunningStrategyPersistence[8]/pr"/> </localList> <collectionType>java.util.ArrayList</collectionType> @@ -535,9 +237,9 @@ <localMap> <entry> <string>gate.gui.icon</string> - <string>welsh</string> + <string>welsh.png</string> </entry> </localMap> </features> </application> -</gate.util.persistence.GateApplication> \ No newline at end of file +</gate.util.persistence.GateApplication> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |