Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dkpro-core-api-datasets-asl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<dependency>
<groupId>com.github.junrar</groupId>
<artifactId>junrar</artifactId>
<version>7.5.4</version>
<version>7.5.5</version>
<exclusions>
<exclusion>
<groupId>org.apache.commons</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
</Appenders>

<Loggers>
<Logger name="org.dkpro.core" level="DEBUG"/>
<Logger name="org.dkpro.core.api.resources.ResourceObjectProviderBase" level="INFO"/>
<!-- <Logger name="org.dkpro.core" level="DEBUG"/> -->
<!-- <Logger name="org.dkpro.core.api.resources.ResourceObjectProviderBase" level="INFO"/> -->

<Root level="WARN">
<AppenderRef ref="ConsoleAppender" />
</Root>
Expand Down
2 changes: 1 addition & 1 deletion dkpro-core-asl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-io-bioc-asl</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.5.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.dkpro.core</groupId>
Expand Down
13 changes: 7 additions & 6 deletions dkpro-core-build/src/main/resources/dkpro-core/version-rules.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
xmlns="http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0 http://mojo.codehaus.org/versions-maven-plugin/xsd/rule-2.0.0.xsd">
<ignoreVersions>
<ignoreVersion type="regex">.*-RC[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-alpha[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-Alpha[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-ALPHA[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-beta[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*\.rc[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-RC-?[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-rc-?[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*\.rc-?[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-alpha-?[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-Alpha-?[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-ALPHA-?[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-beta-?[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-M[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-b[0-9]+</ignoreVersion>
<ignoreVersion type="regex">.*-b[0-9]+\.[0-9]+</ignoreVersion>
Expand Down
25 changes: 5 additions & 20 deletions dkpro-core-corenlp-gpl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<name>DKPro Core GPL - Stanford CoreNLP Suite (v ${corenlp.version}) (GPL)</name>
<url>https://dkpro.github.io/dkpro-core/</url>
<properties>
<corenlp.version>4.5.1</corenlp.version>
<corenlp.version>4.5.5</corenlp.version>
</properties>
<dependencies>
<dependency>
Expand All @@ -54,32 +54,17 @@
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>${corenlp.version}</version>
<!-- <exclusions> -->
<!-- <exclusion> -->
<!-- <groupId>org.ejml</groupId> -->
<!-- <artifactId>ejml-ddense</artifactId> -->
<!-- </exclusion> -->
<!-- <exclusion> -->
<!-- <groupId>org.ejml</groupId> -->
<!-- <artifactId>ejml-core</artifactId> -->
<!-- </exclusion> -->
<!-- <exclusion> -->
<!-- <groupId>org.ejml</groupId> -->
<!-- <artifactId>ejml-simple</artifactId> -->
<!-- </exclusion> -->
<!-- </exclusions> -->
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
<exclusion>
<groupId>xalan</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- <dependency> -->
<!-- <groupId>com.googlecode.efficient-java-matrix-library</groupId> -->
<!-- <artifactId>ejml</artifactId> -->
<!-- <version>0.25</version> -->
<!-- </dependency> -->
<!-- https://github.com/dkpro/dkpro-core/issues/779
<dependency>
<groupId>edu.stanford.nlp</groupId>
Expand Down
2 changes: 1 addition & 1 deletion dkpro-core-fs-hdfs-asl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<name>DKPro Core ASL - FS - HDFS (v ${hadoop.version})</name>
<url>https://dkpro.github.io/dkpro-core/</url>
<properties>
<hadoop.version>3.3.3</hadoop.version>
<hadoop.version>3.3.6</hadoop.version>
</properties>
<dependencies>
<dependency>
Expand Down
Loading