Skip to content

Commit

Permalink
Merge branch 'feature/1346-Reader-for-Annotated-Gigaword' of https://…
Browse files Browse the repository at this point in the history
…github.com/az79nefy/dkpro-core into feature/1346-Reader-for-Annotated-Gigaword

* 'feature/1346-Reader-for-Annotated-Gigaword' of https://github.com/az79nefy/dkpro-core:
  dkpro#1376 - Update TreeTagger build.xml
  dkpro#1190 - Integrate Maui for keyword assignment
  dkpro#1190 - Integrate Maui for keyword assignment
  dkpro#1190 - Integrate Maui for keyword assignment
  dkpro#1190 - Integrate Maui for keyword assignment
  • Loading branch information
reckart committed Jun 5, 2019
2 parents 3e73e1e + fb6344b commit 10b1158
Show file tree
Hide file tree
Showing 14 changed files with 1,382 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ cache/
libudpipe_java.dylib
.DS_Store
.checkstyle
learning.log
6 changes: 6 additions & 0 deletions dkpro-core-gpl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@
<artifactId>dkpro-core-matetools-gpl</artifactId>
<version>1.11.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-maui-gpl</artifactId>
<version>1.11.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-sfst-gpl</artifactId>
Expand All @@ -101,6 +106,7 @@
<module>../dkpro-core-corenlp-gpl</module>
<module>../dkpro-core-lingpipe-gpl</module>
<module>../dkpro-core-matetools-gpl</module>
<module>../dkpro-core-maui-gpl</module>
<module>../dkpro-core-stanfordnlp-gpl</module>
<module>../dkpro-core-sfst-gpl</module>
<module>../dkpro-core-io-tgrep-gpl</module>
Expand Down
16 changes: 16 additions & 0 deletions dkpro-core-maui-gpl/.license-header.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Copyright ${inceptionYear}-${currentYear}
Ubiquitous Knowledge Processing (UKP) Lab
Technische Universität Darmstadt

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.
874 changes: 874 additions & 0 deletions dkpro-core-maui-gpl/LICENSE.txt

Large diffs are not rendered by default.

111 changes: 111 additions & 0 deletions dkpro-core-maui-gpl/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
<!--
Copyright 2007-2018
Ubiquitous Knowledge Processing (UKP) Lab
Technische Universität Darmstadt
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.
-->
<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">
<parent>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-gpl</artifactId>
<version>1.11.0-SNAPSHOT</version>
<relativePath>../dkpro-core-gpl</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>dkpro-core-maui-gpl</artifactId>
<packaging>jar</packaging>
<name>DKPro Core GPL - Maui (v ${maui.version})</name>
<properties>
<maui.version>1.3.0</maui.version>
</properties>
<dependencies>
<!--
<dependency>
<groupId>fi.nationallibrary</groupId>
<artifactId>maui</artifactId>
<version>1.4.5</version>
</dependency>
-->

<dependency>
<groupId>com.entopix</groupId>
<artifactId>maui</artifactId>
<version>${maui.version}</version>
</dependency>

<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimafit-core</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-core</artifactId>
<version>2.11.2</version>
</dependency>

<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-api-metadata-asl</artifactId>
</dependency>
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-api-parameter-asl</artifactId>
</dependency>
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-api-resources-asl</artifactId>
</dependency>

<dependency>
<groupId>eu.openminted.share.annotations</groupId>
<artifactId>omtd-share-annotations-api</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-testing-asl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-io-text-asl</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit 10b1158

Please sign in to comment.