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,3 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Fri Aug 18 04:22:34 CEST 2023
guava-parent-19.0.pom>central=
@@ -0,0 +1,323 @@
<?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.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.google.guava</groupId>
<artifactId>guava-parent</artifactId>
<version>19.0</version>
<packaging>pom</packaging>
<name>Guava Maven Parent</name>
<url>https://github.com/google/guava</url>
<properties>
<gpg.skip>true</gpg.skip>
<!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
<test.include>**/*Test.java</test.include>
<truth.version>0.25</truth.version>
<animal.sniffer.version>1.14</animal.sniffer.version>
</properties>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/google/guava/issues</url>
</issueManagement>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<prerequisites>
<maven>3.0.3</maven>
</prerequisites>
<scm>
<connection>scm:git:https://github.com/google/guava.git</connection>
<developerConnection>scm:git:git@github.com:google/guava.git</developerConnection>
<url>https://github.com/google/guava</url>
</scm>
<developers>
<developer>
<id>kevinb9n</id>
<name>Kevin Bourrillion</name>
<email>kevinb@google.com</email>
<organization>Google</organization>
<organizationUrl>http://www.google.com</organizationUrl>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
<timezone>-8</timezone>
</developer>
</developers>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/google/guava</url>
</ciManagement>
<modules>
<module>guava</module>
<module>guava-gwt</module>
<module>guava-testlib</module>
<module>guava-tests</module>
</modules>
<build>
<!-- Handle where Guava deviates from Maven defaults -->
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<directory>test</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<excludes>
<exclude>**/ForceGuavaCompilation*</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>post-integration-test</phase>
<goals><goal>jar</goal></goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/ForceGuavaCompilation*</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>${animal.sniffer.version}</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java16-sun</artifactId>
<version>1.10</version>
</signature>
</configuration>
<executions>
<execution>
<id>check-java16-sun</id>
<phase>test</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<configuration>
<notimestamp>true</notimestamp>
</configuration>
<executions>
<execution>
<id>attach-docs</id>
<phase>post-integration-test</phase>
<goals><goal>jar</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
<configuration>
<includes>
<include>${test.include}</include>
</includes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<distributionManagement>
<site>
<id>guava-site</id>
<name>Guava Documentation Site</name>
<url>scp://dummy.server/dontinstall/usestaging</url>
</site>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>1.3.9</version>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>com.google.j2objc</groupId>
<artifactId>j2objc-annotations</artifactId>
<version>0.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.8.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>${truth.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<!-- use the guava we're building. -->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.caliper</groupId>
<artifactId>caliper</artifactId>
<version>1.0-beta-2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<!-- use the guava we're building. -->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>jdk7</id>
<activation>
<jdk>1.7</jdk>
</activation>
<!-- Set custom stylesheet under JDK7 -->
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<stylesheetfile>javadoc-stylesheet.css</stylesheetfile>
</configuration>
</plugin>
</plugins>
</reporting>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<stylesheetfile>javadoc-stylesheet.css</stylesheetfile>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>jdk8</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<!-- Disable doclint under JDK 8 -->
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</reporting>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</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 04:22:34 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692325254822
https\://repo.maven.apache.org/maven2/.lastUpdated=1692325354990
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692325154551
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692325354953
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 com.google.guava\:guava-parent\:pom\:19.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 com.google.guava\:guava-parent\:pom\:19.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=1692325154694
@@ -0,0 +1 @@
21fa0d898121cc408c19b74e4305403c6cc45b23
@@ -0,0 +1,4 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Tue Aug 22 19:36:50 CEST 2023
guava-19.0.pom>central=
guava-19.0.jar>central=
@@ -0,0 +1,16 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Tue Aug 22 10:41:05 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692535271436
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692535271439
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692535271438
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692535271434
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact com.google.guava\:guava\:jar\:javadoc\:19.0 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692535271435
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692688819678
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692693665541
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact com.google.guava\:guava\:jar\:javadoc\:19.0 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 com.google.guava\:guava\:jar\:javadoc\:19.0 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 com.google.guava\:guava\:jar\:javadoc\:19.0 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 com.google.guava\:guava\:jar\:javadoc\:19.0 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
@@ -0,0 +1,16 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sun Aug 20 14:41:12 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692452490928
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692452510973
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692452490938
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692520752130
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692535272437
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692443593879
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 com.google.guava\:guava\:jar\:sources\:19.0 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 com.google.guava\:guava\:jar\:sources\:19.0 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 com.google.guava\:guava\:jar\:sources\:19.0 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692443594002
@@ -0,0 +1,15 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Tue Aug 22 19:36:50 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692723163239
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692725799715
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777728
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692396595589
https\://repo.maven.apache.org/maven2/.lastUpdated=1692725810720
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692719229669
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 com.google.guava\:guava\:jar\:19.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/releases/com/google/guava/guava/19.0/guava-19.0.jar
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact com.google.guava\:guava\:jar\:19.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/models/com/google/guava/guava/19.0/guava-19.0.jar
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692719231428
@@ -0,0 +1 @@
6ce200f6b23222af3d8abb6b6459e6c44f4bb0e9
@@ -0,0 +1,182 @@
<?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>com.google.guava</groupId>
<artifactId>guava-parent</artifactId>
<version>19.0</version>
</parent>
<artifactId>guava</artifactId>
<packaging>bundle</packaging>
<name>Guava: Google Core Libraries for Java</name>
<description>
Guava is a suite of core and expanded libraries that include
utility classes, google's collections, io classes, and much
much more.
Guava has only one code dependency - javax.annotation,
per the JSR-305 spec.
</description>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<optional>true</optional><!-- needed only for annotations -->
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<optional>true</optional><!-- needed only for annotations -->
</dependency>
<dependency>
<groupId>com.google.j2objc</groupId>
<artifactId>j2objc-annotations</artifactId>
<optional>true</optional><!-- needed only for annotations -->
</dependency>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-annotations</artifactId>
<version>${animal.sniffer.version}</version>
<optional>true</optional><!-- needed only for annotations -->
</dependency>
<!-- TODO(cpovirk): does this comment belong on the <dependency> in <profiles>? -->
<!-- TODO(cpovirk): want this only for dependency plugin but seems not to work there? Maven runs without failure, but the resulting Javadoc is missing the hoped-for inherited text -->
</dependencies>
<build>
<plugins>
<plugin>
<extensions>true</extensions>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<instructions>
<Export-Package>!com.google.common.base.internal,com.google.common.*</Export-Package>
<Import-Package>
javax.annotation;resolution:=optional,
sun.misc.*;resolution:=optional
</Import-Package>
<Bundle-DocURL>https://guava-libraries.googlecode.com/</Bundle-DocURL>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<!-- TODO(cpovirk): include JDK sources when building testlib doc, too -->
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-jdk-sources</id>
<phase>site</phase>
<goals><goal>unpack-dependencies</goal></goals>
<configuration>
<includeArtifactIds>srczip</includeArtifactIds>
<outputDirectory>${project.build.directory}/jdk-sources</outputDirectory>
<silent>false</silent>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<charset>UTF-8</charset>
<additionalparam>-XDignore.symbol.file</additionalparam>
<excludePackageNames>com.google.common.base.internal</excludePackageNames>
<linksource>true</linksource>
<links>
<link>http://jsr-305.googlecode.com/svn/trunk/javadoc</link>
<link>http://docs.oracle.com/javase/7/docs/api/</link>
</links>
<!-- TODO(cpovirk): can we use includeDependencySources and a local com.oracle.java:jdk-lib:noversion:sources instead of all this unzipping and manual sourcepath modification? -->
<sourcepath>${project.build.sourceDirectory}:${project.build.directory}/jdk-sources</sourcepath>
<subpackages>com.google.common</subpackages>
</configuration>
<executions>
<execution>
<id>attach-docs</id>
</execution>
<execution>
<id>generate-javadoc-site-report</id>
<phase>site</phase>
<goals><goal>javadoc</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>srczip</id>
<activation>
<file>
<exists>${java.home}/../src.zip</exists>
</file>
</activation>
<dependencies>
<dependency>
<groupId>jdk</groupId>
<artifactId>srczip</artifactId>
<version>999</version>
<scope>system</scope>
<systemPath>${java.home}/../src.zip</systemPath>
<optional>true</optional>
</dependency>
</dependencies>
</profile>
<profile>
<id>jdk8</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<!-- Disable doclint under JDK 8 -->
<!-- This is defined in guava-parent as well, but we need it here too because the
<additionalparam> from the maven-javadoc-plugin configuration above seems to
override the one from the parent pom. -->
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-XDignore.symbol.file -Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</reporting>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-XDignore.symbol.file -Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</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 04:19:14 CEST 2023
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692325054247
https\://repo.maven.apache.org/maven2/.lastUpdated=1692325154403
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692324954000
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692325154366
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 com.google.guava\:guava\:pom\:19.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 com.google.guava\:guava\:pom\:19.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=1692324954121
@@ -0,0 +1 @@
65a43a21dbddcc19aa3ca50a63a4b33166bfbc77
@@ -0,0 +1,17 @@
#Tue Aug 22 10:41:05 CEST 2023
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692535272437
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|javadoc=1692693665541
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|javadoc=1692693665541
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|javadoc=1692693665541
central|https\://repo.maven.apache.org/maven2|javadoc=1692693665541
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692535272437
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692535272437
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692535272437
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692535272437
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|javadoc=1692693665541
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|javadoc=1692693665541
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|javadoc=1692688819680
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|javadoc=1692693665541
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692520752134
central|https\://repo.maven.apache.org/maven2|sources=1692535272437
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|sources=1692535272437