From 8a77aa76f577a0a833006367c031d66e5faa9b62 Mon Sep 17 00:00:00 2001 From: oferbr Date: Thu, 16 Jan 2014 15:21:24 +0100 Subject: [PATCH 1/8] adding uima-fit-1.4.0 to common's dependencies (this dependency implicitly exists in lap due to dependency in DKPro, but now uima-fit is needed in common as well) --- common/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common/pom.xml b/common/pom.xml index b591b7c3..9d8f5c11 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -61,5 +61,10 @@ org.apache.servicemix.bundles org.apache.servicemix.bundles.collections-generic + + org.uimafit + uimafit + 1.4.0 + \ No newline at end of file From 91ed1bb961e374287e9bd692e23e201a05c68dd2 Mon Sep 17 00:00:00 2001 From: oferbr Date: Thu, 16 Jan 2014 15:21:57 +0100 Subject: [PATCH 2/8] add UimaUtils - convenience methods for using UIMA --- .../eop/common/utilities/uima/UimaUtils.java | 135 ++++++++++++++++++ .../utilities/uima/UimaUtilsException.java | 15 ++ 2 files changed, 150 insertions(+) create mode 100644 common/src/main/java/eu/excitementproject/eop/common/utilities/uima/UimaUtils.java create mode 100644 common/src/main/java/eu/excitementproject/eop/common/utilities/uima/UimaUtilsException.java diff --git a/common/src/main/java/eu/excitementproject/eop/common/utilities/uima/UimaUtils.java b/common/src/main/java/eu/excitementproject/eop/common/utilities/uima/UimaUtils.java new file mode 100644 index 00000000..83efac43 --- /dev/null +++ b/common/src/main/java/eu/excitementproject/eop/common/utilities/uima/UimaUtils.java @@ -0,0 +1,135 @@ +package eu.excitementproject.eop.common.utilities.uima; + +import static org.uimafit.factory.TypeSystemDescriptionFactory.createTypeSystemDescriptionFromPath; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.net.URL; + +import org.apache.uima.UIMAFramework; +import org.apache.uima.analysis_engine.AnalysisEngine; +import org.apache.uima.cas.impl.XmiCasDeserializer; +import org.apache.uima.cas.impl.XmiCasSerializer; +import org.apache.uima.jcas.JCas; +import org.apache.uima.resource.ResourceInitializationException; +import org.apache.uima.resource.ResourceSpecifier; +import org.apache.uima.resource.metadata.TypeDescription; +import org.apache.uima.resource.metadata.TypeSystemDescription; +import org.apache.uima.util.InvalidXMLException; +import org.apache.uima.util.XMLInputSource; +import org.apache.uima.util.XMLSerializer; +import org.xml.sax.SAXException; + +/** + * Generic convenience methods when using UIMA. + * + * @author Ofer Bronstein + * @since August 2013 + */ +public class UimaUtils { + + /** + * Path, inside the project, to a descriptor file of a "dummy" analysis engine. + * This is required for working with XMI. + */ + public static final String DUMMY_AE_DESC = "src/main/resources/desc/DummyAE.xml"; + + // This class should not be instantiated + private UimaUtils() {} + + /** + * Loads an AE from its descriptor. + * + * @param aeDescriptorPath path to an xml desciptor of the AE + * @return + * @throws InvalidXMLException + * @throws ResourceInitializationException + */ + public static AnalysisEngine loadAE(String aeDescriptorPath) throws InvalidXMLException, ResourceInitializationException { + InputStream s = UimaUtils.class.getResourceAsStream(aeDescriptorPath); + XMLInputSource in = new XMLInputSource(s, null); + ResourceSpecifier specifier = UIMAFramework.getXMLParser().parseResourceSpecifier(in); + return UIMAFramework.produceAnalysisEngine(specifier); + } + + /** + * Loads a CAS from its XMI file. + * + * @param xmiFile file to load + * @param aeDescriptorPath path to an XML descriptor of SOME analysis engine that connects + * to the type system used in the XMI. You can create some Dummy AE for that + * (see the one in lap: src/main/resources/desc/DummyAE.xml) + * @return a JCas object loaded to memory + */ + public static JCas loadXmi(File xmiFile, String aeDescriptorPath) throws InvalidXMLException, ResourceInitializationException, SAXException, IOException { + AnalysisEngine ae = UimaUtils.loadAE(aeDescriptorPath); + JCas jcas = ae.newJCas(); + FileInputStream inputStream = new FileInputStream(xmiFile); + XmiCasDeserializer.deserialize(inputStream, jcas.getCas()); + inputStream.close(); + return jcas; + } + + /** + * Loads a CAS from its XMI file. Uses src/main/resources/desc/DummyAE.xml + * as the required analysis engine descriptor. + * + * @param xmiFile file to load + * @return a JCas object loaded to memory + */ + public static JCas loadXmi(File xmiFile) throws InvalidXMLException, ResourceInitializationException, SAXException, IOException { + return loadXmi(xmiFile, DUMMY_AE_DESC); + } + + /** + * Dumps the given JCas to a file on disk. + * + * @param xmiFile + * @param jcas + */ + public static void dumpXmi(File xmiFile, JCas jcas) throws SAXException, IOException { + FileOutputStream out = new FileOutputStream(xmiFile); + XmiCasSerializer ser = new XmiCasSerializer(jcas.getTypeSystem()); + XMLSerializer xmlSer = new XMLSerializer(out, false); + ser.serialize(jcas.getCas(), xmlSer.getContentHandler()); + out.close(); + } + + /** + * Loads a {@link TypeSystemDescription} from a given descriptor file path. + * This is useful for performing operation on the type system, e.g. for adding + * types dynamically in runtime. + * + * @param typeSystemDescriptorPath + * @return + */ + public static TypeSystemDescription loadTypeSystem(String typeSystemDescriptorPath) throws InvalidXMLException { + URL tsUrl = UimaUtils.class.getResource(typeSystemDescriptorPath); + TypeSystemDescription typeSystem = createTypeSystemDescriptionFromPath(tsUrl.toString()); + typeSystem.resolveImports(); + return typeSystem; + } + + /** + * Loads a {@link TypeSystemDescription} from a given descriptor file path, + * and verifies that the given type exists there (in order to avoid loading + * and manipulating the wrong type system). + * This is useful for performing operation on the type system, e.g. for adding + * types dynamically in runtime. + * + * @param typeSystemDescriptorPath + * @param existingTypeName name of type to verify that exists in the loaded type system + * @return + */ + public static TypeSystemDescription loadTypeSystem(String typeSystemDescriptorPath, String existingTypeName) throws InvalidXMLException, UimaUtilsException { + TypeSystemDescription typeSystem = loadTypeSystem(typeSystemDescriptorPath); + TypeDescription type = typeSystem.getType(existingTypeName); + if (type == null) { + throw new UimaUtilsException("Could not find type " + existingTypeName + " in type system loaded from " + typeSystemDescriptorPath); + } + return typeSystem; + } +} diff --git a/common/src/main/java/eu/excitementproject/eop/common/utilities/uima/UimaUtilsException.java b/common/src/main/java/eu/excitementproject/eop/common/utilities/uima/UimaUtilsException.java new file mode 100644 index 00000000..17ae5d50 --- /dev/null +++ b/common/src/main/java/eu/excitementproject/eop/common/utilities/uima/UimaUtilsException.java @@ -0,0 +1,15 @@ +package eu.excitementproject.eop.common.utilities.uima; + +public class UimaUtilsException extends Exception { + + public UimaUtilsException(String message, Throwable cause) { + super(message, cause); + } + + public UimaUtilsException(String message) { + super(message); + } + + private static final long serialVersionUID = -169346567754793054L; + +} From a9671eb9c63a8f1a79d960bb234f4e2ea7a6dd2f Mon Sep 17 00:00:00 2001 From: Roberto Zanoli Date: Thu, 23 Jan 2014 12:39:18 +0100 Subject: [PATCH 3/8] [maven-release-plugin] prepare for next development iteration --- biutee/pom.xml | 4 ++-- common/pom.xml | 2 +- core/pom.xml | 8 ++++---- distsim/pom.xml | 6 +++--- globalgraphoptimizer/pom.xml | 4 ++-- lap/pom.xml | 4 ++-- lexicalinferenceminer/pom.xml | 6 +++--- pom.xml | 4 ++-- transformations/pom.xml | 8 ++++---- util/pom.xml | 6 +++--- 10 files changed, 26 insertions(+), 26 deletions(-) diff --git a/biutee/pom.xml b/biutee/pom.xml index 73e6aecc..4f92e688 100644 --- a/biutee/pom.xml +++ b/biutee/pom.xml @@ -4,7 +4,7 @@ eu.excitementproject eop - 1.1.0 + 1.1.1-SNAPSHOT biutee biutee @@ -36,7 +36,7 @@ eu.excitementproject transformations - 1.1.0 + 1.1.1-SNAPSHOT diff --git a/common/pom.xml b/common/pom.xml index e688086c..f55f32e9 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -3,7 +3,7 @@ eu.excitementproject eop - 1.1.0 + 1.1.1-SNAPSHOT common common diff --git a/core/pom.xml b/core/pom.xml index 237b078f..9c51a46f 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -3,7 +3,7 @@ eu.excitementproject eop - 1.1.0 + 1.1.1-SNAPSHOT core core @@ -17,13 +17,13 @@ eu.excitementproject common - 1.1.0 + 1.1.1-SNAPSHOT eu.excitementproject distsim - 1.1.0 + 1.1.1-SNAPSHOT @@ -52,7 +52,7 @@ eu.excitementproject lap - 1.1.0 + 1.1.1-SNAPSHOT unituebingen diff --git a/distsim/pom.xml b/distsim/pom.xml index ccf84509..1e2854ae 100644 --- a/distsim/pom.xml +++ b/distsim/pom.xml @@ -3,7 +3,7 @@ eu.excitementproject eop - 1.1.0 + 1.1.1-SNAPSHOT distsim distsim @@ -43,13 +43,13 @@ eu.excitementproject common - 1.1.0 + 1.1.1-SNAPSHOT eu.excitementproject lap - 1.1.0 + 1.1.1-SNAPSHOT diff --git a/util/pom.xml b/util/pom.xml index 18deac70..689bd12a 100644 --- a/util/pom.xml +++ b/util/pom.xml @@ -4,7 +4,7 @@ eu.excitementproject eop - 1.1.0 + 1.1.1-SNAPSHOT util util @@ -25,12 +25,12 @@ eu.excitementproject common - 1.1.0 + 1.1.1-SNAPSHOT eu.excitementproject core - 1.1.0 + 1.1.1-SNAPSHOT args4j From ae3749f0b4c4be07db834c6cc350fdfff8002c78 Mon Sep 17 00:00:00 2001 From: oferbr Date: Mon, 27 Jan 2014 17:36:47 +0100 Subject: [PATCH 4/8] minor fixes of comments --- .../common/component/lexicalknowledge/LexicalResource.java | 7 +++---- .../eop/common/component/lexicalknowledge/LexicalRule.java | 2 +- .../lexicalknowledge/wordnet/WordnetLexicalResource.java | 1 - .../wordnet/WordnetRuleInfoWithSenseNumsOnly.java | 4 ++-- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/common/src/main/java/eu/excitementproject/eop/common/component/lexicalknowledge/LexicalResource.java b/common/src/main/java/eu/excitementproject/eop/common/component/lexicalknowledge/LexicalResource.java index 72316be9..4a8ecdc5 100644 --- a/common/src/main/java/eu/excitementproject/eop/common/component/lexicalknowledge/LexicalResource.java +++ b/common/src/main/java/eu/excitementproject/eop/common/component/lexicalknowledge/LexicalResource.java @@ -9,9 +9,8 @@ /** - * This is the top level interface for wrappers of lexical resources. Its methods accept tuples of < lemma, part of speech> and - * retrieve {@link LexicalRule}s - * that match the criteria (each rule contains a resource-specific {@link RuleInfo} record).
+ * This is the top level interface for wrappers of lexical resources. Its methods accept tuples of {@code } and + * retrieve {@link LexicalRule}s that match the criteria (each rule contains a resource-specific {@link RuleInfo} record).
* In case the user gives null POS, implementations must retrieve rules for all possible POSs.
* In case the user gives a POS that is not supported by the implemented lexical resource, then the implementation must return an empty list (not null). * For instance, Wikipedia supports only nouns, and WordNet supports only nouns, verbs, adjectives and adverbs. @@ -23,7 +22,7 @@ * query. The returned rules should always be the best available. This const should be accepted via Ctor. *

* Note The {@link LexicalResource} is oblivious of the context of the {@code lemma+pos}s it gets. E.g. it would retrieve the same rules for - * {@code < Windows, NOUN>} whether the context is OS or interior design. So it is the user's responsibility to disambiguate such terms. + * {@code } whether the context is OS or interior design. So it is the user's responsibility to disambiguate such terms. * * @author Amnon Lotan * @since 06/05/2011 diff --git a/common/src/main/java/eu/excitementproject/eop/common/component/lexicalknowledge/LexicalRule.java b/common/src/main/java/eu/excitementproject/eop/common/component/lexicalknowledge/LexicalRule.java index 5bc4ecb8..2e37b1f4 100644 --- a/common/src/main/java/eu/excitementproject/eop/common/component/lexicalknowledge/LexicalRule.java +++ b/common/src/main/java/eu/excitementproject/eop/common/component/lexicalknowledge/LexicalRule.java @@ -53,7 +53,7 @@ public LexicalRule(String leftLemma, PartOfSpeech leftPos, String rightLemma, Pa * @param leftPos * @param rightLemma * @param rightPos - * @param confidence the confidence score of the rule, in [0,1]. If now meaningful confidence score is available, the default is 0.5 + * @param confidence the confidence score of the rule, in [0,1]. If no meaningful confidence score is available, the default is 0.5 * @param relation If the resource uses real relations (like Wordnet or Wiktionary), it's a String name of the relevant relation. Else, null * @param resourceName the resource's name * @param info the additional information of the rule diff --git a/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/wordnet/WordnetLexicalResource.java b/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/wordnet/WordnetLexicalResource.java index 1dbd25a2..1b70aed5 100644 --- a/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/wordnet/WordnetLexicalResource.java +++ b/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/wordnet/WordnetLexicalResource.java @@ -123,7 +123,6 @@ public WordnetLexicalResource( * @param chainingLength is the size of transitive relation chaining to be performed on the retrieved rules. E.g. if leftChainingLength = 3, then every * hypernym/hyponym, merornym and holonym query will return rules with words related up to the 3rd degree (that's 1st, 2nd or 3rd) from the original term. Queries * on non transitive relations are unaffected by this parameter. Must be positive. - * @param wordnetDictionaryImplementation The client's choice of underlying {@link Dictionary} implementation. May be null. * @throws LexicalResourceException */ public WordnetLexicalResource( diff --git a/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/wordnet/WordnetRuleInfoWithSenseNumsOnly.java b/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/wordnet/WordnetRuleInfoWithSenseNumsOnly.java index 2ce1e637..987d2b56 100644 --- a/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/wordnet/WordnetRuleInfoWithSenseNumsOnly.java +++ b/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/wordnet/WordnetRuleInfoWithSenseNumsOnly.java @@ -18,8 +18,8 @@ public class WordnetRuleInfoWithSenseNumsOnly extends WordnetRuleInfo { private static final long serialVersionUID = -4077010286925937939L; /** - * The only information is the sense numbers. -1 means all senses - * The sysnsets are dummy and empty and the relation was arbitrarily picked and should not be used (it doesn't mean a thing). + * The only information is the sense numbers. -1 means all senses. + * The synsets are dummy and empty and the relation was arbitrarily picked and should not be used (it doesn't mean a thing). * @param leftSynsetNo * @param rightSynsetNo * @throws LexicalResourceException From be8c6a0b1d503802af6bf7dcd7a88733d00855e4 Mon Sep 17 00:00:00 2001 From: Roberto Zanoli Date: Wed, 12 Feb 2014 10:45:56 +0100 Subject: [PATCH 5/8] Update DerivBaseResource as requested by Britta: There are no logical changes in here, just one of the config propertys was spelled incorrectly. --- .../component/lexicalknowledge/derivbase/DerivBaseResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/derivbase/DerivBaseResource.java b/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/derivbase/DerivBaseResource.java index 9d980ff9..ad8b4701 100644 --- a/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/derivbase/DerivBaseResource.java +++ b/core/src/main/java/eu/excitementproject/eop/core/component/lexicalknowledge/derivbase/DerivBaseResource.java @@ -91,7 +91,7 @@ private boolean isValidPos(PartOfSpeech pos) { */ public DerivBaseResource(CommonConfig config) throws ConfigurationException, ComponentException { this(Boolean.parseBoolean(config.getSection("DerivBaseResource").getString("useScores")), - config.getSection("DerivBaseResource").getInteger("derivatonSteps")); + config.getSection("DerivBaseResource").getInteger("derivationSteps")); } From 40bf07a88a2c2cf5b2b0185084ed672c98ad5ed7 Mon Sep 17 00:00:00 2001 From: Roberto Zanoli Date: Wed, 12 Feb 2014 10:47:44 +0100 Subject: [PATCH 6/8] Update sone TIE configuration fles for German as requested by Britta: Correct only the DErivBase section --- ...cationEDA_Base+DS+DBPos+TP+TPPos+TS_DE.xml | 31 ++++++++++------- ...ionEDA_Base+GNPos+DBPos+TP+TPPos+TS_DE.xml | 34 +++++++++++-------- ...EDA_Base+GNPos+DS+DBPos+TP+TPPos+TS_DE.xml | 34 +++++++++++-------- ...ionEDA_Base+GNPos+DS+DBPos+TP+TPPos_DE.xml | 34 +++++++++++-------- ...ificationEDA_Base+GNPos+DS+DBPos+TS_DE.xml | 34 +++++++++++-------- 5 files changed, 98 insertions(+), 69 deletions(-) diff --git a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+DS+DBPos+TP+TPPos+TS_DE.xml b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+DS+DBPos+TP+TPPos+TS_DE.xml index e7ef3b3a..8254f98e 100644 --- a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+DS+DBPos+TP+TPPos+TS_DE.xml +++ b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+DS+DBPos+TP+TPPos+TS_DE.xml @@ -70,19 +70,24 @@ -

- - true - - 0.01 +
+ + true + + 10
diff --git a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DBPos+TP+TPPos+TS_DE.xml b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DBPos+TP+TPPos+TS_DE.xml index c998e0d0..ed2978a1 100644 --- a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DBPos+TP+TPPos+TS_DE.xml +++ b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DBPos+TP+TPPos+TS_DE.xml @@ -73,21 +73,27 @@ 1.0
- -
- - true - - 0.01 + +
+ + true + + 10
+
diff --git a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TP+TPPos+TS_DE.xml b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TP+TPPos+TS_DE.xml index c6578d6e..576fa51f 100644 --- a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TP+TPPos+TS_DE.xml +++ b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TP+TPPos+TS_DE.xml @@ -82,21 +82,27 @@ 1.0
- -
- - true - - 0.01 + +
+ + true + + 10
+
diff --git a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TP+TPPos_DE.xml b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TP+TPPos_DE.xml index 8dd2c8ae..e35cf998 100644 --- a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TP+TPPos_DE.xml +++ b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TP+TPPos_DE.xml @@ -82,21 +82,27 @@ 1.0
- -
- - true - - 0.01 + +
+ + true + + 10
+
diff --git a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TS_DE.xml b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TS_DE.xml index 4a60aaea..99540a89 100644 --- a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TS_DE.xml +++ b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+GNPos+DS+DBPos+TS_DE.xml @@ -82,21 +82,27 @@ 1.0
- -
- - true - - 0.01 + +
+ + true + + 10
+
From d56589f642b9d06eec87b6f072806d5f590d56d4 Mon Sep 17 00:00:00 2001 From: Roberto Zanoli Date: Wed, 12 Feb 2014 10:49:04 +0100 Subject: [PATCH 7/8] Add a new TIE congiguration file as requested by GN It is used in the step by step tutorial too. --- .../MaxEntClassificationEDA_Base+WN+VO_EN.xml | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+WN+VO_EN.xml diff --git a/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+WN+VO_EN.xml b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+WN+VO_EN.xml new file mode 100644 index 00000000..d9fbe176 --- /dev/null +++ b/core/src/main/resources/configuration-file/MaxEntClassificationEDA_Base+WN+VO_EN.xml @@ -0,0 +1,48 @@ + + + +]> + + + +
+ eu.excitementproject.eop.core.MaxEntClassificationEDA + EN + eu.excitementproject.eop.lap.dkpro.TreeTaggerEN +
+ +
+
+ +
+
+ +
+ HYPERNYM,SYNONYM,PART_HOLONYM + StrongerThan,CanResultIn,Similar +
+ +
+ true + false + false + + eop-resources-1.0.2/ontologies/EnglishWordNet-dict/ +
+ +
+ true + + eop-resources-1.0.2/VerbOcean/verbocean.unrefined.2004-05-20.txt +
+ +
+ eop-resources-1.0.2/model/MaxEntClassificationEDAModel_Base+WN+VO_EN + ./target/EN/dev/ + ./target/EN/test/ + 10000,1 + BagOfWordsScoring,BagOfLemmasScoring,BagOfLexesScoring +
+ +
From 5b6efc8f684e5b9f36213c882d2b1a971ede7e53 Mon Sep 17 00:00:00 2001 From: Roberto Zanoli Date: Wed, 12 Feb 2014 10:55:34 +0100 Subject: [PATCH 8/8] [maven-release-plugin] prepare release v1.1.1 --- biutee/pom.xml | 4 ++-- common/pom.xml | 2 +- core/pom.xml | 8 ++++---- distsim/pom.xml | 6 +++--- globalgraphoptimizer/pom.xml | 4 ++-- lap/pom.xml | 4 ++-- lexicalinferenceminer/pom.xml | 6 +++--- pom.xml | 4 ++-- transformations/pom.xml | 8 ++++---- util/pom.xml | 6 +++--- 10 files changed, 26 insertions(+), 26 deletions(-) diff --git a/biutee/pom.xml b/biutee/pom.xml index 4f92e688..04bcdd9f 100644 --- a/biutee/pom.xml +++ b/biutee/pom.xml @@ -4,7 +4,7 @@ eu.excitementproject eop - 1.1.1-SNAPSHOT + 1.1.1 biutee biutee @@ -36,7 +36,7 @@ eu.excitementproject transformations - 1.1.1-SNAPSHOT + 1.1.1 diff --git a/common/pom.xml b/common/pom.xml index 79b9307b..12cc1dc7 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -3,7 +3,7 @@ eu.excitementproject eop - 1.1.1-SNAPSHOT + 1.1.1 common common diff --git a/core/pom.xml b/core/pom.xml index 9c51a46f..599ed6ef 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -3,7 +3,7 @@ eu.excitementproject eop - 1.1.1-SNAPSHOT + 1.1.1 core core @@ -17,13 +17,13 @@ eu.excitementproject common - 1.1.1-SNAPSHOT + 1.1.1 eu.excitementproject distsim - 1.1.1-SNAPSHOT + 1.1.1 @@ -52,7 +52,7 @@ eu.excitementproject lap - 1.1.1-SNAPSHOT + 1.1.1 unituebingen diff --git a/distsim/pom.xml b/distsim/pom.xml index 1e2854ae..0fe400e1 100644 --- a/distsim/pom.xml +++ b/distsim/pom.xml @@ -3,7 +3,7 @@ eu.excitementproject eop - 1.1.1-SNAPSHOT + 1.1.1 distsim distsim @@ -43,13 +43,13 @@ eu.excitementproject common - 1.1.1-SNAPSHOT + 1.1.1 eu.excitementproject lap - 1.1.1-SNAPSHOT + 1.1.1 diff --git a/util/pom.xml b/util/pom.xml index 689bd12a..665bdab2 100644 --- a/util/pom.xml +++ b/util/pom.xml @@ -4,7 +4,7 @@ eu.excitementproject eop - 1.1.1-SNAPSHOT + 1.1.1 util util @@ -25,12 +25,12 @@ eu.excitementproject common - 1.1.1-SNAPSHOT + 1.1.1 eu.excitementproject core - 1.1.1-SNAPSHOT + 1.1.1 args4j