Added .m2 folder

This commit is contained in:
2023-10-19 14:55:59 +02:00
parent ba4f673b33
commit 94841966ab
6521 changed files with 243785 additions and 1 deletions
@@ -0,0 +1,5 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sat Aug 19 23:35:07 CEST 2023
morfologik-stemming-1.6.0.pom>central=
morfologik-stemming-1.6.0.jar>central=
morfologik-stemming-1.6.0-sources.jar>central=
@@ -0,0 +1,7 @@
#Sat Aug 19 23:35:07 CEST 2023
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692480907340
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692480907340
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692480907340
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692480907340
central|https\://repo.maven.apache.org/maven2|sources=1692480907340
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692480907340
@@ -0,0 +1,11 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sat Aug 19 23:35:07 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692480806348
https\://repo.maven.apache.org/maven2/.lastUpdated=1692480907339
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692480706086
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692480906485
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:sources\:1.6.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:sources\:1.6.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692480706235
@@ -0,0 +1 @@
037de4d387ef4d9ae9a15fff9209455d76bf34b5
@@ -0,0 +1,11 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Fri Aug 18 23:56:19 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692393182746
https\://repo.maven.apache.org/maven2/.lastUpdated=1692395779997
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692391079528
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692395300418
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:1.6.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:1.6.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692391080774
@@ -0,0 +1 @@
8a284571bea2cdd305cd86fbac9bab6deef31c7f
@@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>org.carrot2</groupId>
<artifactId>morfologik-parent</artifactId>
<version>1.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>morfologik-stemming</artifactId>
<packaging>jar</packaging>
<name>Morfologik Stemming APIs</name>
<description>Morfologik Stemming APIs.</description>
<dependencies>
<dependency>
<groupId>org.carrot2</groupId>
<artifactId>morfologik-fsa</artifactId>
<version>${project.version}</version>
<exclusions>
<!-- Not needed at runtime. -->
<exclusion>
<groupId>com.carrotsearch</groupId>
<artifactId>hppc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>junit-benchmarks</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
@@ -0,0 +1,11 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Fri Aug 18 18:29:00 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692376039578
https\://repo.maven.apache.org/maven2/.lastUpdated=1692376140351
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692375939294
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692376139704
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:pom\:1.6.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:pom\:1.6.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692375939446
@@ -0,0 +1 @@
a12880da7aecaa4f6cf392fd09f3761453f98947
@@ -0,0 +1,3 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sat Aug 19 08:22:29 CEST 2023
morfologik-stemming-2.1.1.pom>central=
@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>org.carrot2</groupId>
<artifactId>morfologik-parent</artifactId>
<version>2.1.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>morfologik-stemming</artifactId>
<packaging>bundle</packaging>
<name>Morfologik Stemming APIs</name>
<description>Morfologik Stemming APIs.</description>
<properties>
<forbiddenapis.signaturefile>../etc/forbidden-apis/signatures.txt</forbiddenapis.signaturefile>
</properties>
<dependencies>
<dependency>
<groupId>org.carrot2</groupId>
<artifactId>morfologik-fsa</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>morfologik.stemming</Export-Package>
<Import-Package>*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
@@ -0,0 +1,13 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sat Aug 19 08:22:29 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692426049343
https\://repo.maven.apache.org/maven2/.lastUpdated=1692426149500
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692425944110
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692426149455
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:pom\:2.1.1 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
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\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:pom\:2.1.1 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692425944242
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692425943968
@@ -0,0 +1 @@
a9932b824e42aa1ffb96eb74c8fd9ff8a72a6178
@@ -0,0 +1,4 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sat Aug 19 12:12:17 CEST 2023
morfologik-stemming-2.1.5.pom>central=
morfologik-stemming-2.1.5.jar>central=
@@ -0,0 +1,15 @@
#Tue Aug 22 10:41:04 CEST 2023
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692535270502
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|javadoc=1692693664576
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|javadoc=1692693664576
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|javadoc=1692693664576
central|https\://repo.maven.apache.org/maven2|javadoc=1692693664576
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692535270502
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692535270502
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692535270502
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692535270502
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|javadoc=1692693664576
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|javadoc=1692693664576
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|javadoc=1692693664576
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692535270502
central|https\://repo.maven.apache.org/maven2|sources=1692535270502
@@ -0,0 +1,14 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Tue Aug 22 10:41:04 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692693664570
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692693664576
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692693664573
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692693664565
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=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:javadoc\:2.1.5 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692693664567
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692693664564
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:javadoc\:2.1.5 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:javadoc\:2.1.5 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Network is unreachable
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:javadoc\:2.1.5 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Network is unreachable
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:javadoc\:2.1.5 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
@@ -0,0 +1,14 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sun Aug 20 14:41:10 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692535270499
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692535270502
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692535270501
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692535270497
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=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:sources\:2.1.5 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692535270498
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692535270496
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:sources\:2.1.5 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:sources\:2.1.5 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Network is unreachable
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:sources\:2.1.5 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Network is unreachable
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:sources\:2.1.5 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
@@ -0,0 +1,13 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sat Aug 19 12:12:17 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692436300320
https\://repo.maven.apache.org/maven2/.lastUpdated=1692439937172
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692432788812
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692439803721
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:2.1.5 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
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\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:jar\:2.1.5 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692432790699
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777743
@@ -0,0 +1 @@
a195cbd8ffa3481ea0608a8ec1518f9fc771e78f
@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>org.carrot2</groupId>
<artifactId>morfologik-parent</artifactId>
<version>2.1.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>morfologik-stemming</artifactId>
<packaging>bundle</packaging>
<name>Morfologik Stemming APIs</name>
<description>Morfologik Stemming APIs.</description>
<properties>
<forbiddenapis.signaturefile>../etc/forbidden-apis/signatures.txt</forbiddenapis.signaturefile>
</properties>
<dependencies>
<dependency>
<groupId>org.carrot2</groupId>
<artifactId>morfologik-fsa</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>morfologik.stemming</Export-Package>
<Import-Package>*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
@@ -0,0 +1,13 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sat Aug 19 06:18:24 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692418604590
https\://repo.maven.apache.org/maven2/.lastUpdated=1692418704734
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692418504318
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692418704702
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:pom\:2.1.5 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
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\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.carrot2\:morfologik-stemming\:pom\:2.1.5 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692418504476
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692418504157
@@ -0,0 +1 @@
278e0e5178c087dfd5daaf9349515b80ded14d7d