-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #451 from ClearTK/refactoring/448-Update-dependencies
#448 - Update dependencies
- Loading branch information
Showing
15 changed files
with
280 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,44 @@ | ||
<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> | ||
<artifactId>cleartk-corpus</artifactId> | ||
<packaging>jar</packaging> | ||
<name>ClearTK Corpus</name> | ||
<description>ClearTK annotators and readers for various corpora</description> | ||
<parent> | ||
<artifactId>cleartk</artifactId> | ||
<groupId>org.cleartk</groupId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.uima</groupId> | ||
<artifactId>uimaj-document-annotation</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-util</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-type-system</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jdom</groupId> | ||
<artifactId>jdom</artifactId> | ||
</dependency> | ||
<!-- test only --> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-test-util</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<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> | ||
<artifactId>cleartk-corpus</artifactId> | ||
<packaging>jar</packaging> | ||
<name>ClearTK Corpus</name> | ||
<description>ClearTK annotators and readers for various corpora</description> | ||
<parent> | ||
<artifactId>cleartk</artifactId> | ||
<groupId>org.cleartk</groupId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.uima</groupId> | ||
<artifactId>uimaj-document-annotation</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-util</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-type-system</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jdom</groupId> | ||
<artifactId>jdom</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
</dependency> | ||
|
||
<!-- test only --> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-test-util</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,35 @@ | ||
<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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>cleartk-eval</artifactId> | ||
<packaging>jar</packaging> | ||
<name>ClearTK Eval</name> | ||
<description>ClearTK annotator evaluation library</description> | ||
<parent> | ||
<artifactId>cleartk</artifactId> | ||
<groupId>org.cleartk</groupId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-util</artifactId> | ||
</dependency> | ||
<!-- test only --> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-test-util</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<artifactId>cleartk</artifactId> | ||
<groupId>org.cleartk</groupId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
|
||
<artifactId>cleartk-eval</artifactId> | ||
|
||
<name>ClearTK Eval</name> | ||
<description>ClearTK annotator evaluation library</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-util</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
</dependency> | ||
|
||
<!-- test only --> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-test-util</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,77 @@ | ||
<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> | ||
<artifactId>cleartk-maltparser</artifactId> | ||
<packaging>jar</packaging> | ||
<name>ClearTK MaltParser</name> | ||
<description>ClearTK wrapper for MaltParser</description> | ||
<parent> | ||
<artifactId>cleartk</artifactId> | ||
<groupId>org.cleartk</groupId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.maltparser</groupId> | ||
<artifactId>maltparser</artifactId> | ||
<version>1.8</version> | ||
<!-- MaltParser is using old versions --> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>de.bwaldvogel</groupId> | ||
<artifactId>liblinear</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>tw.edu.ntu.csie</groupId> | ||
<artifactId>libsvm</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>de.bwaldvogel</groupId> | ||
<artifactId>liblinear</artifactId> | ||
<version>1.94</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>tw.edu.ntu.csie</groupId> | ||
<artifactId>libsvm</artifactId> | ||
<version>3.17</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.17</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-util</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-type-system</artifactId> | ||
</dependency> | ||
<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> | ||
<artifactId>cleartk-maltparser</artifactId> | ||
<packaging>jar</packaging> | ||
<name>ClearTK MaltParser</name> | ||
<description>ClearTK wrapper for MaltParser</description> | ||
<parent> | ||
<artifactId>cleartk</artifactId> | ||
<groupId>org.cleartk</groupId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.maltparser</groupId> | ||
<artifactId>maltparser</artifactId> | ||
<version>1.9.2</version> | ||
<!-- MaltParser is using old versions --> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>de.bwaldvogel</groupId> | ||
<artifactId>liblinear</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>tw.edu.ntu.csie</groupId> | ||
<artifactId>libsvm</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>de.bwaldvogel</groupId> | ||
<artifactId>liblinear</artifactId> | ||
<version>1.94</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>tw.edu.ntu.csie</groupId> | ||
<artifactId>libsvm</artifactId> | ||
<version>3.17</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.17</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-util</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-type-system</artifactId> | ||
</dependency> | ||
<!-- test only --> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-test-util</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<!-- increase max memory for tests since model must be loaded --> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<argLine>-Xmx2g</argLine> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependency> | ||
<groupId>org.cleartk</groupId> | ||
<artifactId>cleartk-test-util</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<!-- increase max memory for tests since model must be loaded --> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<argLine>-Xmx2g</argLine> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.