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.
|
||||
#Fri Aug 18 22:00:13 CEST 2023
|
||||
args4j-site-2.0.23.pom>central=
|
||||
@@ -0,0 +1,149 @@
|
||||
<?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.kohsuke</groupId>
|
||||
<artifactId>pom</artifactId>
|
||||
<version>3</version>
|
||||
</parent>
|
||||
|
||||
<groupId>args4j</groupId>
|
||||
<artifactId>args4j-site</artifactId>
|
||||
<name>args4j parent</name>
|
||||
<version>2.0.23</version>
|
||||
<packaging>pom</packaging>
|
||||
<description>args4j : Java command line arguments parser</description>
|
||||
<url>http://args4j.dev.java.net/</url>
|
||||
<issueManagement>
|
||||
<url>https://args4j.dev.java.net/issues</url>
|
||||
</issueManagement>
|
||||
<inceptionYear>2003</inceptionYear>
|
||||
|
||||
<ciManagement>
|
||||
<notifiers>
|
||||
<notifier>
|
||||
<configuration>
|
||||
<address>kk@kohsuke.org</address>
|
||||
</configuration>
|
||||
</notifier>
|
||||
</notifiers>
|
||||
</ciManagement>
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>discussion list</name>
|
||||
<subscribe>users-subscribe@args4j.dev.java.net</subscribe>
|
||||
<unsubscribe>users-ubsubscribe@args4j.dev.java.net</unsubscribe>
|
||||
<archive>https://args4j.dev.java.net/servlets/SummarizeList?listName=users</archive>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>kohsuke</id>
|
||||
<name>Kohsuke Kawaguchi</name>
|
||||
<email>kk@kohsuke.org</email>
|
||||
<organization>Sun Microsystems</organization>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jhm</id>
|
||||
<name>Jan Materne</name>
|
||||
<email>jhm@apache.org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>marksinke</id>
|
||||
<name>Mark Sinke</name>
|
||||
<email>marksinke@dev.java.net</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>lacostej</id>
|
||||
<name>Jerome Lacoste</name>
|
||||
<email>jerome@coffeebreaks.org</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com/kohsuke/args4j.git</connection>
|
||||
<developerConnection>scm:git:ssh://git@github.com/kohsuke/args4j.git</developerConnection>
|
||||
<url>http://args4j.kohsuke.org/</url>
|
||||
</scm>
|
||||
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>github-pages</id>
|
||||
<url>gitsite:git@github.com/kohsuke/args4j.git</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<organization>
|
||||
<name>Kohsuke Kawaguchi</name>
|
||||
<url>http://www.kohsuke.org/</url>
|
||||
</organization>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>2.3.2</version>
|
||||
<configuration>
|
||||
<source>1.5</source>
|
||||
<target>1.5</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.3.1</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.0-beta-3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Bundle-SymbolicName>org.kohsuke.${pom.artifactId}</Bundle-SymbolicName>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>MIT License</name>
|
||||
<url>http://www.opensource.org/licenses/mit-license.php</url>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<modules>
|
||||
<module>args4j</module>
|
||||
<module>args4j-tools</module>
|
||||
<module>args4j-maven-plugin</module>
|
||||
<module>args4j-maven-plugin-example</module>
|
||||
</modules>
|
||||
</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 22:00:13 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692388713403
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692388813542
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692388613165
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692388813504
|
||||
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 args4j\:args4j-site\:pom\:2.0.23 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 args4j\:args4j-site\:pom\:2.0.23 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=1692388613307
|
||||
@@ -0,0 +1 @@
|
||||
b987032143d5ee2222f3a9fdb699fe1da52f1822
|
||||
Reference in New Issue
Block a user