Added .m2 folder
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 10:39:12 CEST 2023
|
||||
dkpro-tc-examples-1.1.0-20190227.162102-85.pom>ukp-oss-snapshots=
|
||||
dkpro-tc-examples-1.1.0-20190227.162102-85.jar>ukp-oss-snapshots=
|
||||
dkpro-tc-examples-1.1.0-20190227.162102-85-sources.jar>ukp-oss-snapshots=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
0ea962e16fce48b3ea0150ff615f79d1b7deac38
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
778e903e025fe0d0ed2052bbbe22bf3bc79706a9
|
||||
+295
@@ -0,0 +1,295 @@
|
||||
<!--
|
||||
|
||||
Copyright 2019
|
||||
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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-tc-examples</artifactId>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>GNU General Public License (GPL), Version 3.0</name>
|
||||
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api-features</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-ngram</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-pair</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-pair-similarity</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-io-libsvm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-crfsuite</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-deeplearning4j</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-dynet</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-keras</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-liblinear</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-libsvm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-svmhmm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-vowpalwabbit</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-weka</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-xgboost</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>nz.ac.waikato.cms.weka</groupId>
|
||||
<artifactId>weka-dev</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.sf.meka</groupId>
|
||||
<artifactId>meka</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>
|
||||
de.tudarmstadt.ukp.dkpro.core.api.frequency-asl
|
||||
</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.metadata-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.tei-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.text-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.segmentation-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.lexmorph-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.io-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.resources-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-de-maxent</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-en-maxent</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.tokit-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-lexical-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.deeplearning4j</groupId>
|
||||
<artifactId>deeplearning4j-nlp</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.deeplearning4j</groupId>
|
||||
<artifactId>deeplearning4j-nn</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-common</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-buffer</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-native-platform</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>it.unimi.dsi</groupId>
|
||||
<artifactId>fastutil</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.unidue.ltl.evaluation</groupId>
|
||||
<artifactId>ltlab-evaluation-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.unidue.ltl.evaluation</groupId>
|
||||
<artifactId>ltlab-evaluation-measures</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-compress</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-asl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.arktools-gpl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<properties>
|
||||
<!-- This module should not be deployed to the repository -->
|
||||
<maven.deploy.skip>true</maven.deploy.skip>
|
||||
</properties>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<configuration>
|
||||
<usedDependencies>
|
||||
<!-- Models not detected by byte-code analysis -->
|
||||
<usedDependency>de.tudarmstadt.ukp.dkpro.core:de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-de-maxent</usedDependency>
|
||||
<usedDependency>de.tudarmstadt.ukp.dkpro.core:de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-en-maxent</usedDependency>
|
||||
<!-- Needed when running DL4j experiments -->
|
||||
<usedDependency>org.nd4j:nd4j-native-platform</usedDependency>
|
||||
</usedDependencies>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 00:18:31 CEST 2023
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692397111318
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692397111440
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692397111247
|
||||
+1
@@ -0,0 +1 @@
|
||||
636fb07423e1cecd93dd65972763024f1ae2aabd
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+295
@@ -0,0 +1,295 @@
|
||||
<!--
|
||||
|
||||
Copyright 2019
|
||||
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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-tc-examples</artifactId>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>GNU General Public License (GPL), Version 3.0</name>
|
||||
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api-features</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-ngram</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-pair</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-pair-similarity</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-io-libsvm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-crfsuite</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-deeplearning4j</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-dynet</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-keras</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-liblinear</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-libsvm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-svmhmm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-vowpalwabbit</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-weka</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-xgboost</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>nz.ac.waikato.cms.weka</groupId>
|
||||
<artifactId>weka-dev</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.sf.meka</groupId>
|
||||
<artifactId>meka</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>
|
||||
de.tudarmstadt.ukp.dkpro.core.api.frequency-asl
|
||||
</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.metadata-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.tei-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.text-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.segmentation-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.lexmorph-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.io-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.resources-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-de-maxent</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-en-maxent</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.tokit-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-lexical-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.deeplearning4j</groupId>
|
||||
<artifactId>deeplearning4j-nlp</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.deeplearning4j</groupId>
|
||||
<artifactId>deeplearning4j-nn</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-common</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-buffer</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-native-platform</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>it.unimi.dsi</groupId>
|
||||
<artifactId>fastutil</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.unidue.ltl.evaluation</groupId>
|
||||
<artifactId>ltlab-evaluation-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.unidue.ltl.evaluation</groupId>
|
||||
<artifactId>ltlab-evaluation-measures</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-compress</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-asl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.arktools-gpl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<properties>
|
||||
<!-- This module should not be deployed to the repository -->
|
||||
<maven.deploy.skip>true</maven.deploy.skip>
|
||||
</properties>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<configuration>
|
||||
<usedDependencies>
|
||||
<!-- Models not detected by byte-code analysis -->
|
||||
<usedDependency>de.tudarmstadt.ukp.dkpro.core:de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-de-maxent</usedDependency>
|
||||
<usedDependency>de.tudarmstadt.ukp.dkpro.core:de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-en-maxent</usedDependency>
|
||||
<!-- Needed when running DL4j experiments -->
|
||||
<usedDependency>org.nd4j:nd4j-native-platform</usedDependency>
|
||||
</usedDependencies>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
#Sun Aug 20 10:39:12 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692520752527
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692520752527
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692520752527
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692520752527
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692520752527
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692520752527
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692520752527
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata modelVersion="1.1.0">
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-examples</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<versioning>
|
||||
<snapshot>
|
||||
<timestamp>20190227.162102</timestamp>
|
||||
<buildNumber>85</buildNumber>
|
||||
</snapshot>
|
||||
<lastUpdated>20190227162104</lastUpdated>
|
||||
<snapshotVersions>
|
||||
<snapshotVersion>
|
||||
<classifier>javadoc</classifier>
|
||||
<extension>jar</extension>
|
||||
<value>1.1.0-20190227.162102-85</value>
|
||||
<updated>20190227162102</updated>
|
||||
</snapshotVersion>
|
||||
<snapshotVersion>
|
||||
<classifier>sources</classifier>
|
||||
<extension>jar</extension>
|
||||
<value>1.1.0-20190227.162102-85</value>
|
||||
<updated>20190227162102</updated>
|
||||
</snapshotVersion>
|
||||
<snapshotVersion>
|
||||
<extension>jar</extension>
|
||||
<value>1.1.0-20190227.162102-85</value>
|
||||
<updated>20190227162102</updated>
|
||||
</snapshotVersion>
|
||||
<snapshotVersion>
|
||||
<extension>pom</extension>
|
||||
<value>1.1.0-20190227.162102-85</value>
|
||||
<updated>20190227162102</updated>
|
||||
</snapshotVersion>
|
||||
<snapshotVersion>
|
||||
<classifier>test-sources</classifier>
|
||||
<extension>jar</extension>
|
||||
<value>1.1.0-20190227.162102-85</value>
|
||||
<updated>20190227162102</updated>
|
||||
</snapshotVersion>
|
||||
</snapshotVersions>
|
||||
</versioning>
|
||||
</metadata>
|
||||
+1
@@ -0,0 +1 @@
|
||||
892285828bd549b6a052e52f0b95ec662e073765
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Sep 15 17:00:48 CEST 2023
|
||||
maven-metadata-ukp-oss-model-releases.xml.error=
|
||||
maven-metadata-data-local.xml.lastUpdated=1694790048150
|
||||
maven-metadata-ukp-oss-snapshots.xml.lastUpdated=1694790048152
|
||||
maven-metadata-ukp-oss-model-releases.xml.lastUpdated=1694790048152
|
||||
maven-metadata-ltl-snapshots.xml.error=Could not transfer metadata org.dkpro.tc\:dkpro-tc-examples\:1.1.0-SNAPSHOT/maven-metadata.xml from/to ltl-snapshots (http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots)\: Connect timed out
|
||||
maven-metadata-data-local.xml.error=
|
||||
maven-metadata-ltl-snapshots.xml/@default-ltl-snapshots-http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots/.lastUpdated=1694790048153
|
||||
Reference in New Issue
Block a user