Added .m2 folder
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 07:08:40 CEST 2023
|
||||
jackson-parent-2.9.0.pom>central=
|
||||
@@ -0,0 +1,211 @@
|
||||
<?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.fasterxml</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>28</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.fasterxml.jackson</groupId>
|
||||
<artifactId>jackson-parent</artifactId>
|
||||
<version>2.9.0</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Jackson parent poms</name>
|
||||
<description>Parent pom for all Jackson components</description>
|
||||
<url>http://github.com/FasterXML/</url>
|
||||
<organization>
|
||||
<name>FasterXML</name>
|
||||
<url>http://fasterxml.com/</url>
|
||||
</organization>
|
||||
<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>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>cowtowncoder</id>
|
||||
<name>Tatu Saloranta</name>
|
||||
<email>tatu@fasterxml.com</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>christophercurrie</id>
|
||||
<name>Christopher Currie</name>
|
||||
<email />
|
||||
</developer>
|
||||
<developer>
|
||||
<id>prb</id>
|
||||
<name>Paul Brown</name>
|
||||
<email>prb@fasterxml.com</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:FasterXML/jackson-parent.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:FasterXML/jackson-parent.git</developerConnection>
|
||||
<url>http://github.com/FasterXML/jackson-parent</url>
|
||||
<tag>jackson-parent-2.9.0</tag>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
<jackson.version.annotations>2.9.0</jackson.version.annotations>
|
||||
|
||||
<!-- 02-Oct-2015, tatu: Jackson 2.4 and above are Java 6 (earlier versions Java 5);
|
||||
Jackson 2.7 and above Java 7 (with exception of `jackson-core`/`jackson-annotations` still Java 6),
|
||||
-->
|
||||
<javac.src.version>1.7</javac.src.version>
|
||||
<javac.target.version>1.7</javac.target.version>
|
||||
<javac.debuglevel>lines,source,vars</javac.debuglevel>
|
||||
|
||||
<!-- Versions for other dependencies -->
|
||||
<version.junit>4.12</version.junit>
|
||||
|
||||
<!--
|
||||
| For automatically generating PackageVersion.java. Your child pom.xml must define
|
||||
| packageVersion.dir and packageVersion.package, and must set the phase of the
|
||||
| process-packageVersion execution of maven-replacer-plugin to 'generate-sources'.
|
||||
-->
|
||||
<packageVersion.template.input>${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in</packageVersion.template.input>
|
||||
<packageVersion.template.output>${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java</packageVersion.template.output>
|
||||
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>${jackson.version.annotations}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>${version.junit}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
|
||||
<!-- Jackson has stricter enforced requirements than parent pom -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.4.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>[1.7,)</version>
|
||||
<message>[ERROR] The currently supported version of Java is 1.7 or higher</message>
|
||||
</requireJavaVersion>
|
||||
<requireMavenVersion>
|
||||
<version>[3.0,)</version>
|
||||
<message>[ERROR] The currently supported version of Maven is 3.0 or higher</message>
|
||||
</requireMavenVersion>
|
||||
<requirePluginVersions>
|
||||
<banLatest>true</banLatest>
|
||||
<banRelease>true</banRelease>
|
||||
<banSnapshots>true</banSnapshots>
|
||||
<phases>clean,deploy,site</phases>
|
||||
<message>[ERROR] Best Practice is to always define plugin versions!</message>
|
||||
</requirePluginVersions>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!-- use of replacer plug-in specific to Jackson -->
|
||||
<plugin>
|
||||
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||
<artifactId>replacer</artifactId>
|
||||
<version>${version.plugin.replacer}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>process-packageVersion</id>
|
||||
<goals>
|
||||
<goal>replace</goal>
|
||||
</goals>
|
||||
<!--
|
||||
| We explicitly omit 'phase' here so child poms can opt in to
|
||||
| generating their PackageVersion.java file.
|
||||
|
|
||||
| If your child pom wants a PackageVersion.java file, define
|
||||
| the 'packageVersion.dir' and 'packageVersion.package' properties
|
||||
| and include the commented-out section in your child pom's plugin
|
||||
| for this execution ID.
|
||||
<phase>generate-sources</phase>
|
||||
-->
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<file>${packageVersion.template.input}</file>
|
||||
<outputFile>${packageVersion.template.output}</outputFile>
|
||||
<replacements>
|
||||
<replacement>
|
||||
<token>@package@</token>
|
||||
<value>${packageVersion.package}</value>
|
||||
</replacement>
|
||||
<replacement>
|
||||
<token>@projectversion@</token>
|
||||
<value>${project.version}</value>
|
||||
</replacement>
|
||||
<replacement>
|
||||
<token>@projectgroupid@</token>
|
||||
<value>${project.groupId}</value>
|
||||
</replacement>
|
||||
<replacement>
|
||||
<token>@projectartifactid@</token>
|
||||
<value>${project.artifactId}</value>
|
||||
</replacement>
|
||||
</replacements>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<!-- Work around Eclipse incompatibility (http://code.google.com/p/maven-replacer-plugin/issues/detail?id=66) -->
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||
<artifactId>replacer</artifactId>
|
||||
<versionRange>[${version.plugin.replacer},)</versionRange>
|
||||
<goals>
|
||||
<goal>replace</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<execute>
|
||||
<runOnIncremental>false</runOnIncremental>
|
||||
</execute>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 07:08:40 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692421619535
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692421720655
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692421519269
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692421720613
|
||||
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.fasterxml.jackson\:jackson-parent\:pom\:2.9.0 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 com.fasterxml.jackson\:jackson-parent\:pom\:2.9.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=1692421519428
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692421519121
|
||||
+1
@@ -0,0 +1 @@
|
||||
fb7650f17c3641ee06a386d1a48195b2caebd542
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 06:58:37 CEST 2023
|
||||
jackson-parent-2.9.1.pom>central=
|
||||
@@ -0,0 +1,215 @@
|
||||
<?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.fasterxml</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>30</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.fasterxml.jackson</groupId>
|
||||
<artifactId>jackson-parent</artifactId>
|
||||
<version>2.9.1</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Jackson parent poms</name>
|
||||
<description>Parent pom for all Jackson components</description>
|
||||
<url>http://github.com/FasterXML/</url>
|
||||
<organization>
|
||||
<name>FasterXML</name>
|
||||
<url>http://fasterxml.com/</url>
|
||||
</organization>
|
||||
<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>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>cowtowncoder</id>
|
||||
<name>Tatu Saloranta</name>
|
||||
<email>tatu@fasterxml.com</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>christophercurrie</id>
|
||||
<name>Christopher Currie</name>
|
||||
<email />
|
||||
</developer>
|
||||
<developer>
|
||||
<id>prb</id>
|
||||
<name>Paul Brown</name>
|
||||
<email>prb@fasterxml.com</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:FasterXML/jackson-parent.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:FasterXML/jackson-parent.git</developerConnection>
|
||||
<url>http://github.com/FasterXML/jackson-parent</url>
|
||||
<tag>jackson-parent-2.9.1</tag>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
<jackson.version.annotations>2.9.0</jackson.version.annotations>
|
||||
|
||||
<!-- 02-Oct-2015, tatu: Jackson 2.4 and above are Java 6 (earlier versions Java 5);
|
||||
Jackson 2.7 and above Java 7 (with exception of `jackson-core`/`jackson-annotations` still Java 6),
|
||||
-->
|
||||
<javac.src.version>1.7</javac.src.version>
|
||||
<javac.target.version>1.7</javac.target.version>
|
||||
<javac.debuglevel>lines,source,vars</javac.debuglevel>
|
||||
|
||||
<!-- Versions for other dependencies -->
|
||||
<version.junit>4.12</version.junit>
|
||||
|
||||
<!--
|
||||
| For automatically generating PackageVersion.java. Your child pom.xml must define
|
||||
| packageVersion.dir and packageVersion.package, and must set the phase of the
|
||||
| process-packageVersion execution of maven-replacer-plugin to 'generate-sources'.
|
||||
-->
|
||||
<packageVersion.template.input>${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in</packageVersion.template.input>
|
||||
<packageVersion.template.output>${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java</packageVersion.template.output>
|
||||
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>${jackson.version.annotations}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>${version.junit}</version>
|
||||
<!-- 06-Sep-2017, tatu: As per [#6], forcing scope here can be problematic so remove
|
||||
<scope>test</scope>
|
||||
-->
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
|
||||
<!-- Jackson has stricter enforced requirements than parent pom -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<!-- 06-Sep-2017, tatu: Need this version for Java 9 builds
|
||||
-->
|
||||
<version>3.0.0-M1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>[1.7,)</version>
|
||||
<message>[ERROR] The currently supported version of Java is 1.7 or higher</message>
|
||||
</requireJavaVersion>
|
||||
<requireMavenVersion>
|
||||
<version>[3.0,)</version>
|
||||
<message>[ERROR] The currently supported version of Maven is 3.0 or higher</message>
|
||||
</requireMavenVersion>
|
||||
<requirePluginVersions>
|
||||
<banLatest>true</banLatest>
|
||||
<banRelease>true</banRelease>
|
||||
<banSnapshots>true</banSnapshots>
|
||||
<phases>clean,deploy,site</phases>
|
||||
<message>[ERROR] Best Practice is to always define plugin versions!</message>
|
||||
</requirePluginVersions>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!-- use of replacer plug-in specific to Jackson -->
|
||||
<plugin>
|
||||
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||
<artifactId>replacer</artifactId>
|
||||
<version>${version.plugin.replacer}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>process-packageVersion</id>
|
||||
<goals>
|
||||
<goal>replace</goal>
|
||||
</goals>
|
||||
<!--
|
||||
| We explicitly omit 'phase' here so child poms can opt in to
|
||||
| generating their PackageVersion.java file.
|
||||
|
|
||||
| If your child pom wants a PackageVersion.java file, define
|
||||
| the 'packageVersion.dir' and 'packageVersion.package' properties
|
||||
| and include the commented-out section in your child pom's plugin
|
||||
| for this execution ID.
|
||||
<phase>generate-sources</phase>
|
||||
-->
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<file>${packageVersion.template.input}</file>
|
||||
<outputFile>${packageVersion.template.output}</outputFile>
|
||||
<replacements>
|
||||
<replacement>
|
||||
<token>@package@</token>
|
||||
<value>${packageVersion.package}</value>
|
||||
</replacement>
|
||||
<replacement>
|
||||
<token>@projectversion@</token>
|
||||
<value>${project.version}</value>
|
||||
</replacement>
|
||||
<replacement>
|
||||
<token>@projectgroupid@</token>
|
||||
<value>${project.groupId}</value>
|
||||
</replacement>
|
||||
<replacement>
|
||||
<token>@projectartifactid@</token>
|
||||
<value>${project.artifactId}</value>
|
||||
</replacement>
|
||||
</replacements>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<!-- Work around Eclipse incompatibility (http://code.google.com/p/maven-replacer-plugin/issues/detail?id=66) -->
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||
<artifactId>replacer</artifactId>
|
||||
<versionRange>[${version.plugin.replacer},)</versionRange>
|
||||
<goals>
|
||||
<goal>replace</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<execute>
|
||||
<runOnIncremental>false</runOnIncremental>
|
||||
</execute>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
+13
@@ -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:58:37 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692421017235
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692421117968
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692420916947
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692421117930
|
||||
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.fasterxml.jackson\:jackson-parent\:pom\:2.9.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 com.fasterxml.jackson\:jackson-parent\:pom\:2.9.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=1692420917125
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692420916809
|
||||
+1
@@ -0,0 +1 @@
|
||||
c93158194445812ef9b83a6f7439d24aa02e3f55
|
||||
Reference in New Issue
Block a user