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 12:12:20 CEST 2023
|
||||
codehaus-parent-4.pom>central=
|
||||
@@ -0,0 +1,155 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
~ Copyright (c) 2007-2011 Sonatype, Inc. All rights reserved.
|
||||
~
|
||||
~ This program is licensed to you under the Apache License Version 2.0,
|
||||
~ and you may not use this file except in compliance with the Apache License Version 2.0.
|
||||
~ You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing,
|
||||
~ software distributed under the Apache License Version 2.0 is distributed on an
|
||||
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
|
||||
-->
|
||||
<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>
|
||||
|
||||
<groupId>org.codehaus</groupId>
|
||||
<artifactId>codehaus-parent</artifactId>
|
||||
<version>4</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Codehaus Parent</name>
|
||||
<url>http://codehaus.org/</url>
|
||||
<description>The Codehaus is a collaborative environment for building open source projects with a strong emphasis on modern languages, focussed on quality components that meet real world needs. </description>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/codehaus-parent.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/codehaus-parent.git</developerConnection>
|
||||
<url>https://github.com/sonatype/codehaus-parent</url>
|
||||
</scm>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>codehaus-snapshots</id>
|
||||
<name>Codehaus Snapshots</name>
|
||||
<url>http://nexus.codehaus.org/snapshots/</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
|
||||
<distributionManagement>
|
||||
<snapshotRepository>
|
||||
<id>codehaus-nexus-snapshots</id>
|
||||
<name>Codehaus Nexus Snapshots</name>
|
||||
<url>${codehausDistMgmtSnapshotsUrl}</url>
|
||||
</snapshotRepository>
|
||||
<repository>
|
||||
<id>codehaus-nexus-staging</id>
|
||||
<name>Codehaus Release Repository</name>
|
||||
<url>https://nexus.codehaus.org/service/local/staging/deploy/maven2/</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
<version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
|
||||
<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
|
||||
</requireMavenVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<configuration>
|
||||
<mavenExecutorId>forked-path</mavenExecutorId>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<arguments>-Pcodehaus-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<codehausDistMgmtSnapshotsUrl>https://nexus.codehaus.org/content/repositories/snapshots/</codehausDistMgmtSnapshotsUrl>
|
||||
</properties>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>codehaus-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.1.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
8b133202d50bec1e59bddc9392cb44d1fe5facc8
|
||||
@@ -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:20 CEST 2023
|
||||
gmavenplus-plugin-1.5.pom>central=
|
||||
gmavenplus-plugin-1.5.jar>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
e8bf6dc974e681dbc068b112aa59cb89e9516865
|
||||
+634
@@ -0,0 +1,634 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus</groupId>
|
||||
<artifactId>codehaus-parent</artifactId>
|
||||
<version>4</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.gmavenplus</groupId>
|
||||
<artifactId>gmavenplus-plugin</artifactId>
|
||||
<packaging>maven-plugin</packaging>
|
||||
<version>1.5</version>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<mavenVersion>2.2.1</mavenVersion>
|
||||
<coberturaPluginVersion>2.7</coberturaPluginVersion>
|
||||
<javadocPluginVersion>2.10.1</javadocPluginVersion>
|
||||
<!-- these are properties so integration tests can use them -->
|
||||
<javaVersion>1.5</javaVersion>
|
||||
<dependencyPluginVersion>2.10</dependencyPluginVersion>
|
||||
<compilerPluginVersion>3.2</compilerPluginVersion>
|
||||
<junitVersion>4.12</junitVersion>
|
||||
<surefirePluginVersion>2.18.1</surefirePluginVersion>
|
||||
<pluginPluginVersion>3.4</pluginPluginVersion>
|
||||
<!-- this is a property so that site generation can use it -->
|
||||
<sourcePluginVersion>2.4</sourcePluginVersion>
|
||||
<!-- this is a property so that site generation and integration tests can use it -->
|
||||
<groovyVersion>2.4.1</groovyVersion>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-project</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-core</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.shared</groupId>
|
||||
<artifactId>file-management</artifactId>
|
||||
<version>1.2.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-registry</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<!-- this is to support use of Groovysh (Groovy jars don't include) -->
|
||||
<groupId>org.fusesource.jansi</groupId>
|
||||
<artifactId>jansi</artifactId>
|
||||
<version>1.11</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<!-- this is to support use of Groovysh (Groovy jars don't include) -->
|
||||
<!-- this will work for all Groovy >= 2.2.0-beta-1; users of older versions will need to pull in 1.0 as a runtime dependency -->
|
||||
<groupId>jline</groupId>
|
||||
<artifactId>jline</artifactId>
|
||||
<version>2.12.1</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<!-- this is to support use of AntBuilder (Groovy jars don't include) -->
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.9.4</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<!-- this is to support use of @grab (Groovy jars don't include) -->
|
||||
<groupId>org.apache.ivy</groupId>
|
||||
<artifactId>ivy</artifactId>
|
||||
<version>2.4.0</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>${junitVersion}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-all</artifactId>
|
||||
<version>1.10.19</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>disable-doclint</id>
|
||||
<activation>
|
||||
<jdk>[1.8,)</jdk>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<additionalparam>-Xdoclint:none</additionalparam>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<additionalparam>-Xdoclint:none</additionalparam>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>indy</id>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>${groovyVersion}</version>
|
||||
<classifier>indy</classifier>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-ant</artifactId>
|
||||
<version>${groovyVersion}</version>
|
||||
<classifier>indy</classifier>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<configuration>
|
||||
<profiles>
|
||||
<profile>indy</profile>
|
||||
</profiles>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>nonindy</id>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>${groovyVersion}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-ant</artifactId>
|
||||
<version>${groovyVersion}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<configuration>
|
||||
<profiles>
|
||||
<profile>nonindy</profile>
|
||||
</profiles>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>pre2.3-indy</id>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>${groovyVersion}</version>
|
||||
<classifier>indy</classifier>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<configuration>
|
||||
<profiles>
|
||||
<profile>pre2.3-indy</profile>
|
||||
</profiles>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>pre2.3-nonindy</id>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>${groovyVersion}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<configuration>
|
||||
<profiles>
|
||||
<profile>pre2.3-nonindy</profile>
|
||||
</profiles>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>release-sign-artifacts</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>performRelease</name>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<prerequisites>
|
||||
<maven>${mavenVersion}</maven>
|
||||
</prerequisites>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-versions</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
<version>[3.0.1,)</version>
|
||||
</requireMavenVersion>
|
||||
<requireJavaVersion>
|
||||
<version>[1.8,)</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>2.6.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>${dependencyPluginVersion}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>${compilerPluginVersion}</version>
|
||||
<configuration>
|
||||
<source>${javaVersion}</source>
|
||||
<target>${javaVersion}</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<version>1.6</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-help-plugin</artifactId>
|
||||
<version>2.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>${pluginPluginVersion}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate-helpmojo</id>
|
||||
<goals>
|
||||
<goal>helpmojo</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>generate-descriptor</id>
|
||||
<goals>
|
||||
<goal>descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
<version>1.11</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sniffClasses</id>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<signature>
|
||||
<groupId>org.codehaus.mojo.signature</groupId>
|
||||
<artifactId>java15</artifactId>
|
||||
<version>1.0</version>
|
||||
</signature>
|
||||
<ignoreDependencies>false</ignoreDependencies>
|
||||
<ignores>
|
||||
<!-- these are ignored because they seem to be pulled in from Maven's bootstrap even though the bootstrap version may not match the compilation version -->
|
||||
<ignore>org/apache/maven/*</ignore>
|
||||
<ignore>org/codehaus/plexus/*</ignore>
|
||||
<ignore>org/codehaus/classworlds/*</ignore>
|
||||
</ignores>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>${surefirePluginVersion}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>${coberturaPluginVersion}</version>
|
||||
<configuration>
|
||||
<check />
|
||||
<instrumentation>
|
||||
<excludes>
|
||||
<!-- excluded because is a generated class -->
|
||||
<exclude>org/codehaus/gmavenplus/mojo/HelpMojo.class</exclude>
|
||||
<!-- excluded because is copied from and maintained in JDK -->
|
||||
<exclude>org/codehaus/gmavenplus/util/JDK5Utils.class</exclude>
|
||||
</excludes>
|
||||
</instrumentation>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<version>1.9</version>
|
||||
<configuration>
|
||||
<projectsDirectory>src/it</projectsDirectory>
|
||||
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
||||
<pomIncludes>
|
||||
<pomInclude>*/pom.xml</pomInclude>
|
||||
</pomIncludes>
|
||||
<settingsFile>src/it/settings.xml</settingsFile>
|
||||
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>${sourcePluginVersion}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${javadocPluginVersion}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.1</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.scm</groupId>
|
||||
<artifactId>maven-scm-provider-gitexe</artifactId>
|
||||
<version>1.9.2</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.scm</groupId>
|
||||
<artifactId>maven-scm-manager-plexus</artifactId>
|
||||
<version>1.9.2</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<!-- note you can download this from http://github.com/khuxtable/wagon-gitsite -->
|
||||
<groupId>org.kathrynhuxtable.maven.wagon</groupId>
|
||||
<artifactId>wagon-gitsite</artifactId>
|
||||
<version>0.3.1</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>${pluginPluginVersion}</version>
|
||||
<configuration>
|
||||
<requirements>
|
||||
<jdk>${javaVersion}</jdk>
|
||||
<maven>${mavenVersion}</maven>
|
||||
</requirements>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${javadocPluginVersion}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>${surefirePluginVersion}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>${coberturaPluginVersion}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<configuration>
|
||||
<tagListOptions>
|
||||
<tagClasses>
|
||||
<tagClass>
|
||||
<displayName>Todo</displayName>
|
||||
<tags>
|
||||
<tag>
|
||||
<matchString>todo</matchString>
|
||||
<matchType>ignoreCase</matchType>
|
||||
</tag>
|
||||
</tags>
|
||||
</tagClass>
|
||||
</tagClasses>
|
||||
</tagListOptions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.14</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>dependency-updates-report</report>
|
||||
<report>plugin-updates-report</report>
|
||||
<report>property-updates-report</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>github-project-site</id>
|
||||
<url>gitsite:git@github.com/groovy/GMavenPlus.git</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<name>GMavenPlus Plugin</name>
|
||||
<description>Integrates Groovy into Maven projects.</description>
|
||||
<inceptionYear>2011</inceptionYear>
|
||||
<url>http://groovy.github.io/GMavenPlus/</url>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>keeganwitt</id>
|
||||
<name>Keegan Witt</name>
|
||||
<roles>
|
||||
<role>developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
</developers>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache 2</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
</license>
|
||||
</licenses>
|
||||
<issueManagement>
|
||||
<system>GitHub Issues</system>
|
||||
<url>http://github.com/groovy/GMavenPlus/issues</url>
|
||||
</issueManagement>
|
||||
<scm>
|
||||
<url>http://github.com/groovy/GMavenPlus</url>
|
||||
<connection>scm:git:git@github.com:groovy/GMavenPlus.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:groovy/GMavenPlus.git</developerConnection>
|
||||
<tag>1.5</tag>
|
||||
</scm>
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
a40401a1378afe05a0560404f170fad071ff35b4
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
#Mon Sep 18 12:12:55 CEST 2023
|
||||
central|https\://repo.maven.apache.org/maven2|null=1695031975966
|
||||
@@ -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:52 CEST 2023
|
||||
groovy-all-2.4.7.jar>central=
|
||||
groovy-all-2.4.7.pom>central=
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
c5371aaa20bcdca1175d9477fc0811f4fd99b68a
|
||||
@@ -0,0 +1,751 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>2.4.7</version>
|
||||
<packaging>jar</packaging>
|
||||
<name>Apache Groovy</name>
|
||||
<description>Groovy: A powerful, dynamic language for the JVM</description>
|
||||
<url>http://groovy-lang.org</url>
|
||||
<inceptionYear>2003</inceptionYear>
|
||||
<organization>
|
||||
<name>Apache Software Foundation</name>
|
||||
<url>http://groovy-lang.org</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>
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Groovy Developer List</name>
|
||||
<archive>http://mail-archives.apache.org/mod_mbox/groovy-dev/</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Groovy User List</name>
|
||||
<archive>http://mail-archives.apache.org/mod_mbox/groovy-users/</archive>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>glaforge</id>
|
||||
<name>Guillaume Laforge</name>
|
||||
<organization>org.apache.maven.model.Organization@a6822b0</organization>
|
||||
<roles>
|
||||
<role>Project Manager</role>
|
||||
<role>Despot</role>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>bob</id>
|
||||
<name>bob mcwhirter</name>
|
||||
<email>bob@werken.com</email>
|
||||
<organization>org.apache.maven.model.Organization@6462f6ea</organization>
|
||||
<roles>
|
||||
<role>Founder</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jstrachan</id>
|
||||
<name>James Strachan</name>
|
||||
<email>james@coredevelopers.com</email>
|
||||
<organization>org.apache.maven.model.Organization@1ebd8d6</organization>
|
||||
<roles>
|
||||
<role>Founder</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>joe</id>
|
||||
<name>Joe Walnes</name>
|
||||
<organization>org.apache.maven.model.Organization@614c4fc1</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>skizz</id>
|
||||
<name>Chris Stevenson</name>
|
||||
<organization>org.apache.maven.model.Organization@2b0b310c</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jamiemc</id>
|
||||
<name>Jamie McCrindle</name>
|
||||
<organization>org.apache.maven.model.Organization@545754f5</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>mattf</id>
|
||||
<name>Matt Foemmel</name>
|
||||
<organization>org.apache.maven.model.Organization@f5c901c</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>alextkachman</id>
|
||||
<name>Alex Tkachman</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>roshandawrani</id>
|
||||
<name>Roshan Dawrani</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>spullara</id>
|
||||
<name>Sam Pullara</name>
|
||||
<email>sam@sampullara.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>kasper</id>
|
||||
<name>Kasper Nielsen</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>travis</id>
|
||||
<name>Travis Kay</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>zohar</id>
|
||||
<name>Zohar Melamed</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jwilson</id>
|
||||
<name>John Wilson</name>
|
||||
<email>tug@wilson.co.uk</email>
|
||||
<organization>org.apache.maven.model.Organization@5a61a567</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>cpoirier</id>
|
||||
<name>Chris Poirier</name>
|
||||
<email>cpoirier@dreaming.org</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>ckl</id>
|
||||
<name>Christiaan ten Klooster</name>
|
||||
<email>ckl@dacelo.nl</email>
|
||||
<organization>org.apache.maven.model.Organization@58d25603</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>goetze</id>
|
||||
<name>Steve Goetze</name>
|
||||
<email>goetze@dovetail.com</email>
|
||||
<organization>org.apache.maven.model.Organization@67b09a21</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>bran</id>
|
||||
<name>Bing Ran</name>
|
||||
<email>b55r@sina.com</email>
|
||||
<organization>org.apache.maven.model.Organization@15663156</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jez</id>
|
||||
<name>Jeremy Rayner</name>
|
||||
<email>jeremy.rayner@gmail.com</email>
|
||||
<organization>org.apache.maven.model.Organization@6d1684d5</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jstump</id>
|
||||
<name>John Stump</name>
|
||||
<email>johnstump2@yahoo.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>blackdrag</id>
|
||||
<name>Jochen Theodorou</name>
|
||||
<email>blackdrag@gmx.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Despot</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>russel</id>
|
||||
<name>Russel Winder</name>
|
||||
<email>russel@russel.org.uk</email>
|
||||
<organization>org.apache.maven.model.Organization@528d4758</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Founder of Gant</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>phk</id>
|
||||
<name>Pilho Kim</name>
|
||||
<email>phkim@cluecom.co.kr</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>cstein</id>
|
||||
<name>Christian Stein</name>
|
||||
<email>sormuras@gmx.de</email>
|
||||
<organization>org.apache.maven.model.Organization@23f90490</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>mittie</id>
|
||||
<name>Dierk Koenig</name>
|
||||
<email>dierk.koenig@canoo.com</email>
|
||||
<organization>org.apache.maven.model.Organization@1d914106</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>paulk</id>
|
||||
<name>Paul King</name>
|
||||
<email>paulk@asert.com.au</email>
|
||||
<organization>org.apache.maven.model.Organization@7d61373c</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Despot</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>galleon</id>
|
||||
<name>Guillaume Alleon</name>
|
||||
<email>guillaume.alleon@gmail.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>user57</id>
|
||||
<name>Jason Dillon</name>
|
||||
<email>jason@planet57.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>shemnon</id>
|
||||
<name>Danno Ferrin</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jwill</id>
|
||||
<name>James Williams</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>timyates</id>
|
||||
<name>Tim Yates</name>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>aalmiray</id>
|
||||
<name>Andres Almiray</name>
|
||||
<email>aalmiray@users.sourceforge.net</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>mguillem</id>
|
||||
<name>Marc Guillemot</name>
|
||||
<email>mguillemot@yahoo.fr</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jimwhite</id>
|
||||
<name>Jim White</name>
|
||||
<email>jim@pagesmiths.com</email>
|
||||
<organization>org.apache.maven.model.Organization@14b4feab</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>pniederw</id>
|
||||
<name>Peter Niederwieser</name>
|
||||
<email>pniederw@gmail.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>andresteingress</id>
|
||||
<name>Andre Steingress</name>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>hamletdrc</id>
|
||||
<name>Hamlet D'Arcy</name>
|
||||
<email>hamletdrc@gmail.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>melix</id>
|
||||
<name>Cedric Champeau</name>
|
||||
<email>cedric.champeau@gmail.com</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Despot</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>pascalschumacher</id>
|
||||
<name>Pascal Schumacher</name>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
</developers>
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Joern Eyrich</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Robert Kuzelj</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rod Cope</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Yuri Schimke</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>James Birchfield</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Robert Fuller</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sergey Udovenko</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Hallvard Traetteberg</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Peter Reilly</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brian McCallister</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard Monson-Haefel</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brian Larson</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Artur Biesiadowski</name>
|
||||
<email>abies@pg.gda.pl</email>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ivan Z. Ganza</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Arjun Nayyar</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mark Chu-Carroll</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mark Turansky</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jean-Louis Berliet</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Graham Miller</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Marc Palmer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Tugdual Grall</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Edwin Tellman</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Evan A Slatis</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mike Dillon</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Bernhard Huber</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Marc DeXeT</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dejan Bosanac</name>
|
||||
<email>dejan@nighttale.net</email>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Denver Dino</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ted Naleid</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Chanwit Kaewkasi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brad Long</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Bito</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jim Jagielski</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rodolfo Velasco</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Hurst</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Merlyn Albery-Speyer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>jeremi Joslin</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>UEHARA Junji</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>NAKANO Yasuharu</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dinko Srkoc</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Raffaele Cigni</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Alberto Vilches Raton</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Paulo Poiati</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Alexander Klein</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Adam Murdoch</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>David Durham</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Daniel Henrique Alves Lima</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Wagenleitner</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Colin Harrington</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brian Alexander</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jan Weitz</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Joachim Baumann</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>David Sutherland</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mattias Reichel</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>David Lee</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sergei Egorov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Hein Meling</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Michael Baehr</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Craig Andrews</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Peter Ledbrook</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Thibault Kruse</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Paolo Di Tommaso</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rene Scheibe</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matias Bjarland</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard Hightower</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Andrey Bloschetsov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Yu Kobayashi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Nick Grealy</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Marcin Grzejszczak</name>
|
||||
</contributor>
|
||||
</contributors>
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://issues.apache.org/jira/browse/GROOVY</url>
|
||||
</issueManagement>
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/apache/groovy.git</connection>
|
||||
<developerConnection>scm:git:https://github.com/apache/groovy.git</developerConnection>
|
||||
<url>https://github.com/apache/groovy.git</url>
|
||||
</scm>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.9.4</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant-antlr</artifactId>
|
||||
<version>1.9.4</version>
|
||||
<scope>runtime</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant-launcher</artifactId>
|
||||
<version>1.9.4</version>
|
||||
<scope>runtime</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant-junit</artifactId>
|
||||
<version>1.9.4</version>
|
||||
<scope>runtime</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>junit</artifactId>
|
||||
<groupId>junit</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<version>1.2</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>bsf</groupId>
|
||||
<artifactId>bsf</artifactId>
|
||||
<version>2.4.0</version>
|
||||
<scope>compile</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<groupId>commons-logging</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.thoughtworks.qdox</groupId>
|
||||
<artifactId>qdox</artifactId>
|
||||
<version>1.12.1</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jline</groupId>
|
||||
<artifactId>jline</artifactId>
|
||||
<version>2.12</version>
|
||||
<scope>compile</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>junit</artifactId>
|
||||
<groupId>junit</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>jsp-api</artifactId>
|
||||
<version>2.0</version>
|
||||
<scope>provided</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>servlet-api</artifactId>
|
||||
<version>2.4</version>
|
||||
<scope>provided</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.testng</groupId>
|
||||
<artifactId>testng</artifactId>
|
||||
<version>6.8.13</version>
|
||||
<scope>runtime</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>jcommander</artifactId>
|
||||
<groupId>com.beust</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>bsh</artifactId>
|
||||
<groupId>org.beanshell</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.beust</groupId>
|
||||
<artifactId>jcommander</artifactId>
|
||||
<version>1.47</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.9.4</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.thoughtworks.xstream</groupId>
|
||||
<artifactId>xstream</artifactId>
|
||||
<version>1.4.7</version>
|
||||
<scope>compile</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>jmock</artifactId>
|
||||
<groupId>jmock</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>junit</artifactId>
|
||||
<groupId>junit</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>xpp3_min</artifactId>
|
||||
<groupId>xpp3</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.gpars</groupId>
|
||||
<artifactId>gpars</artifactId>
|
||||
<version>1.2.1</version>
|
||||
<scope>runtime</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ivy</groupId>
|
||||
<artifactId>ivy</artifactId>
|
||||
<version>2.4.0</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.fusesource.jansi</groupId>
|
||||
<artifactId>jansi</artifactId>
|
||||
<version>1.11</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
0ddaa0e3c02bcd1cdcae9807ec9817400dea47f5
|
||||
@@ -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
|
||||
groovy-2.4.13.jar>central=
|
||||
groovy-2.4.13.pom>central=
|
||||
+16
@@ -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=1692535271168
|
||||
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=1692535271170
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692535271169
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692535271166
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact org.codehaus.groovy\:groovy\:jar\:javadoc\:2.4.13 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=1692535271167
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692688820156
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692693665387
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact org.codehaus.groovy\:groovy\:jar\:javadoc\:2.4.13 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.codehaus.groovy\:groovy\:jar\:javadoc\:2.4.13 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.codehaus.groovy\:groovy\:jar\:javadoc\:2.4.13 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.codehaus.groovy\:groovy\:jar\:javadoc\:2.4.13 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
+16
@@ -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=1692492855196
|
||||
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=1692492875226
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692492855200
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692492835170
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact org.codehaus.groovy\:groovy\:jar\:sources\:2.4.13 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=1692492835173
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692520752560
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692535272305
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact org.codehaus.groovy\:groovy\:jar\:sources\:2.4.13 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.codehaus.groovy\:groovy\:jar\:sources\:2.4.13 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: basa.ltl.uni-due.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.codehaus.groovy\:groovy\:jar\:sources\:2.4.13 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: basa.ltl.uni-due.de
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact org.codehaus.groovy\:groovy\:jar\:sources\:2.4.13 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
Binary file not shown.
@@ -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=1692723163229
|
||||
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=1692725799707
|
||||
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=1692432777730
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692396595581
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692725810700
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692719229655
|
||||
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.codehaus.groovy\:groovy\:jar\:2.4.13 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/org/codehaus/groovy/groovy/2.4.13/groovy-2.4.13.jar
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.codehaus.groovy\:groovy\:jar\:2.4.13 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/org/codehaus/groovy/groovy/2.4.13/groovy-2.4.13.jar
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692719231417
|
||||
@@ -0,0 +1 @@
|
||||
de7b73bed517fa1323aab391b719b59c3702391a
|
||||
@@ -0,0 +1,659 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy</artifactId>
|
||||
<version>2.4.13</version>
|
||||
<packaging>jar</packaging>
|
||||
<name>Apache Groovy</name>
|
||||
<description>Groovy: A powerful, dynamic language for the JVM</description>
|
||||
<url>http://groovy-lang.org</url>
|
||||
<inceptionYear>2003</inceptionYear>
|
||||
<organization>
|
||||
<name>Apache Software Foundation</name>
|
||||
<url>http://groovy-lang.org</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>glaforge</id>
|
||||
<name>Guillaume Laforge</name>
|
||||
<organization>org.apache.maven.model.Organization@2e7b7024</organization>
|
||||
<roles>
|
||||
<role>Project Manager</role>
|
||||
<role>Despot</role>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>bob</id>
|
||||
<name>bob mcwhirter</name>
|
||||
<email>bob@werken.com</email>
|
||||
<organization>org.apache.maven.model.Organization@74222de</organization>
|
||||
<roles>
|
||||
<role>Founder</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jstrachan</id>
|
||||
<name>James Strachan</name>
|
||||
<email>james@coredevelopers.com</email>
|
||||
<organization>org.apache.maven.model.Organization@457f4425</organization>
|
||||
<roles>
|
||||
<role>Founder</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>joe</id>
|
||||
<name>Joe Walnes</name>
|
||||
<organization>org.apache.maven.model.Organization@36395659</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>skizz</id>
|
||||
<name>Chris Stevenson</name>
|
||||
<organization>org.apache.maven.model.Organization@3e5dd0bf</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jamiemc</id>
|
||||
<name>Jamie McCrindle</name>
|
||||
<organization>org.apache.maven.model.Organization@3c8d8772</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>mattf</id>
|
||||
<name>Matt Foemmel</name>
|
||||
<organization>org.apache.maven.model.Organization@a492b07</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>alextkachman</id>
|
||||
<name>Alex Tkachman</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>roshandawrani</id>
|
||||
<name>Roshan Dawrani</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>spullara</id>
|
||||
<name>Sam Pullara</name>
|
||||
<email>sam@sampullara.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>kasper</id>
|
||||
<name>Kasper Nielsen</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>travis</id>
|
||||
<name>Travis Kay</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>zohar</id>
|
||||
<name>Zohar Melamed</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jwilson</id>
|
||||
<name>John Wilson</name>
|
||||
<email>tug@wilson.co.uk</email>
|
||||
<organization>org.apache.maven.model.Organization@6f48c708</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>cpoirier</id>
|
||||
<name>Chris Poirier</name>
|
||||
<email>cpoirier@dreaming.org</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>ckl</id>
|
||||
<name>Christiaan ten Klooster</name>
|
||||
<email>ckl@dacelo.nl</email>
|
||||
<organization>org.apache.maven.model.Organization@4f776f45</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>goetze</id>
|
||||
<name>Steve Goetze</name>
|
||||
<email>goetze@dovetail.com</email>
|
||||
<organization>org.apache.maven.model.Organization@6bc3e777</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>bran</id>
|
||||
<name>Bing Ran</name>
|
||||
<email>b55r@sina.com</email>
|
||||
<organization>org.apache.maven.model.Organization@20b2cb68</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jez</id>
|
||||
<name>Jeremy Rayner</name>
|
||||
<email>jeremy.rayner@gmail.com</email>
|
||||
<organization>org.apache.maven.model.Organization@460be883</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jstump</id>
|
||||
<name>John Stump</name>
|
||||
<email>johnstump2@yahoo.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>blackdrag</id>
|
||||
<name>Jochen Theodorou</name>
|
||||
<email>blackdrag@gmx.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Despot</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>russel</id>
|
||||
<name>Russel Winder</name>
|
||||
<email>russel@russel.org.uk</email>
|
||||
<organization>org.apache.maven.model.Organization@695eeb92</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Founder of Gant</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>phk</id>
|
||||
<name>Pilho Kim</name>
|
||||
<email>phkim@cluecom.co.kr</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>cstein</id>
|
||||
<name>Christian Stein</name>
|
||||
<email>sormuras@gmx.de</email>
|
||||
<organization>org.apache.maven.model.Organization@167811c3</organization>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>mittie</id>
|
||||
<name>Dierk Koenig</name>
|
||||
<email>dierk.koenig@canoo.com</email>
|
||||
<organization>org.apache.maven.model.Organization@1d8b4eca</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>paulk</id>
|
||||
<name>Paul King</name>
|
||||
<email>paulk@asert.com.au</email>
|
||||
<organization>org.apache.maven.model.Organization@47b56ab0</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Despot</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>galleon</id>
|
||||
<name>Guillaume Alleon</name>
|
||||
<email>guillaume.alleon@gmail.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>user57</id>
|
||||
<name>Jason Dillon</name>
|
||||
<email>jason@planet57.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>shemnon</id>
|
||||
<name>Danno Ferrin</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jwill</id>
|
||||
<name>James Williams</name>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>timyates</id>
|
||||
<name>Tim Yates</name>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>aalmiray</id>
|
||||
<name>Andres Almiray</name>
|
||||
<email>aalmiray@users.sourceforge.net</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>mguillem</id>
|
||||
<name>Marc Guillemot</name>
|
||||
<email>mguillemot@yahoo.fr</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jimwhite</id>
|
||||
<name>Jim White</name>
|
||||
<email>jim@pagesmiths.com</email>
|
||||
<organization>org.apache.maven.model.Organization@655aaf03</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>pniederw</id>
|
||||
<name>Peter Niederwieser</name>
|
||||
<email>pniederw@gmail.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>andresteingress</id>
|
||||
<name>Andre Steingress</name>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>hamletdrc</id>
|
||||
<name>Hamlet D'Arcy</name>
|
||||
<email>hamletdrc@gmail.com</email>
|
||||
<roles>
|
||||
<role>Developer Emeritus</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>melix</id>
|
||||
<name>Cedric Champeau</name>
|
||||
<email>cedric.champeau@gmail.com</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Despot</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>pascalschumacher</id>
|
||||
<name>Pascal Schumacher</name>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
</developers>
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Joern Eyrich</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Robert Kuzelj</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rod Cope</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Yuri Schimke</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>James Birchfield</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Robert Fuller</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sergey Udovenko</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Hallvard Traetteberg</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Peter Reilly</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brian McCallister</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard Monson-Haefel</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brian Larson</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Artur Biesiadowski</name>
|
||||
<email>abies@pg.gda.pl</email>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ivan Z. Ganza</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Arjun Nayyar</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mark Chu-Carroll</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mark Turansky</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jean-Louis Berliet</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Graham Miller</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Marc Palmer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Tugdual Grall</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Edwin Tellman</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Evan A Slatis</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mike Dillon</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Bernhard Huber</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Marc DeXeT</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dejan Bosanac</name>
|
||||
<email>dejan@nighttale.net</email>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Denver Dino</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ted Naleid</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Chanwit Kaewkasi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brad Long</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Bito</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jim Jagielski</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rodolfo Velasco</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Hurst</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Merlyn Albery-Speyer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>jeremi Joslin</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>UEHARA Junji</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>NAKANO Yasuharu</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dinko Srkoc</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Raffaele Cigni</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Alberto Vilches Raton</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Paulo Poiati</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Alexander Klein</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Adam Murdoch</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>David Durham</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Daniel Henrique Alves Lima</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Wagenleitner</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Colin Harrington</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brian Alexander</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jan Weitz</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Joachim Baumann</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>David Sutherland</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mattias Reichel</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>David Lee</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sergei Egorov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Hein Meling</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Michael Baehr</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Craig Andrews</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Peter Ledbrook</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Thibault Kruse</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Paolo Di Tommaso</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rene Scheibe</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matias Bjarland</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard Hightower</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Andrey Bloschetsov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Yu Kobayashi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Nick Grealy</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Marcin Grzejszczak</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Pap L?rinc</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Guillaume Balaine</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Santhosh Kumar T</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Alan Green</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Alex Popescu</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Martin Kempf</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Stephane Landelle</name>
|
||||
</contributor>
|
||||
</contributors>
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Groovy Developer List</name>
|
||||
<archive>http://mail-archives.apache.org/mod_mbox/groovy-dev/</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Groovy User List</name>
|
||||
<archive>http://mail-archives.apache.org/mod_mbox/groovy-users/</archive>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/apache/groovy.git</connection>
|
||||
<developerConnection>scm:git:https://github.com/apache/groovy.git</developerConnection>
|
||||
<url>https://github.com/apache/groovy.git</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://issues.apache.org/jira/browse/GROOVY</url>
|
||||
</issueManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.9.4</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.thoughtworks.xstream</groupId>
|
||||
<artifactId>xstream</artifactId>
|
||||
<version>1.4.10</version>
|
||||
<scope>compile</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>junit</artifactId>
|
||||
<groupId>junit</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>xpp3_min</artifactId>
|
||||
<groupId>xpp3</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>jmock</artifactId>
|
||||
<groupId>jmock</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.fusesource.jansi</groupId>
|
||||
<artifactId>jansi</artifactId>
|
||||
<version>1.11</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ivy</groupId>
|
||||
<artifactId>ivy</artifactId>
|
||||
<version>2.4.0</version>
|
||||
<scope>compile</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>*</artifactId>
|
||||
<groupId>*</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.gpars</groupId>
|
||||
<artifactId>gpars</artifactId>
|
||||
<version>1.2.1</version>
|
||||
<scope>runtime</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</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 05:02:42 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692327662086
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692327762267
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692327561809
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692327762222
|
||||
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.codehaus.groovy\:groovy\:pom\:2.4.13 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.codehaus.groovy\:groovy\:pom\:2.4.13 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=1692327561946
|
||||
@@ -0,0 +1 @@
|
||||
d6d915543a9a0b78e4be556301c5af2157a091a0
|
||||
@@ -0,0 +1,17 @@
|
||||
#Tue Aug 22 10:41:05 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692535272306
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|javadoc=1692693665388
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|javadoc=1692693665388
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|javadoc=1692693665388
|
||||
central|https\://repo.maven.apache.org/maven2|javadoc=1692693665388
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692535272306
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692535272306
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692535272306
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692535272306
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|javadoc=1692693665388
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|javadoc=1692693665388
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|javadoc=1692688820158
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|javadoc=1692693665388
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692520752561
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692535272306
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|sources=1692535272306
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:05 CEST 2023
|
||||
cobertura-maven-plugin-2.7.jar>central=
|
||||
cobertura-maven-plugin-2.7.pom>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
0d49d827220fc4282babb85fb3b9970ffdb99aff
|
||||
+415
@@ -0,0 +1,415 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<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>
|
||||
<artifactId>mojo-parent</artifactId>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<version>34</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<packaging>maven-plugin</packaging>
|
||||
|
||||
<name>Mojo's Maven plugin for Cobertura</name>
|
||||
<url>http://mojo.codehaus.org/cobertura-maven-plugin/</url>
|
||||
<description>This is the Mojo's Maven plugin for Cobertura. Cobertura is a free Java tool that calculates the percentage of code accessed by
|
||||
tests. It can be used to identify which parts of your Java program are lacking test coverage.
|
||||
</description>
|
||||
<inceptionYear>2005</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>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>joakime</id>
|
||||
<name>Joakim Erdfelt</name>
|
||||
<email>joakim@erdfelt.net</email>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>-5</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>wgwaltney</id>
|
||||
<name>Will Gwaltney</name>
|
||||
<email>will.gwaltney@sas.com</email>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>fgiust</id>
|
||||
<name>Fabrizio Giustina</name>
|
||||
<email>fgiust@apache.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>aheritier</id>
|
||||
<name>Arnaud Heritier</name>
|
||||
<email>aheritier@apache.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Despot</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>rfscholte</id>
|
||||
<name>Robert Scholte</name>
|
||||
<email>rfscholte@codehaus.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
<timezone>Europe/Amsterdam</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>bimargulies</id>
|
||||
<name>Benson Margulies</name>
|
||||
<email>bimargulies@gmail.com</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
<timezone>-5</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Lennart Jörelid</name>
|
||||
<email>lj@jguru.se</email>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>dennisl</id>
|
||||
<name>Dennis Lundberg</name>
|
||||
<email>dennisl@codehaus.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
<timezone>Europe/Stockholm</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>James Carpenter</name>
|
||||
<email>jcarpenter621@yahoo.com</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
<timezone>-6</timezone>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<prerequisites>
|
||||
<maven>${mavenVersion}</maven>
|
||||
</prerequisites>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/mojo/tags/cobertura-maven-plugin-2.7</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/cobertura-maven-plugin-2.7</developerConnection>
|
||||
<url>http://svn.codehaus.org/mojo/tags/cobertura-maven-plugin-2.7</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/MCOBERTURA</url>
|
||||
</issueManagement>
|
||||
|
||||
<properties>
|
||||
<!--
|
||||
Add a property that can be injected into the site
|
||||
mojo.java.target won't work for that
|
||||
-->
|
||||
<javaVersion>1.6</javaVersion>
|
||||
<mojo.java.target>${javaVersion}</mojo.java.target>
|
||||
<mavenVersion>2.0.8</mavenVersion> <!-- MNG-3062 -->
|
||||
<!-- Remember to update AbstractCoberturaTestCase when upgrading Cobertura -->
|
||||
<coberturaVersion>2.1.1</coberturaVersion>
|
||||
</properties>
|
||||
<!-- from MSITE-459 -->
|
||||
<build>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav-jackrabbit</artifactId>
|
||||
<version>1.0-beta-7</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<configuration>
|
||||
<!-- Temporary solution to get a release out using gpg version 1 -->
|
||||
<useAgent>false</useAgent>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<!-- cobertura plugin deps -->
|
||||
<dependency>
|
||||
<groupId>net.sourceforge.cobertura</groupId>
|
||||
<artifactId>cobertura</artifactId>
|
||||
<version>${coberturaVersion}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>jaxen</groupId>
|
||||
<artifactId>jaxen</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>xerces</groupId>
|
||||
<artifactId>xercesImpl</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!--
|
||||
TODO: Remove these dependencies when Cobertura is released in a version which
|
||||
does not include ancient versions of Jaxen and XercesImpl
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>xerces</groupId>
|
||||
<artifactId>xercesImpl</artifactId>
|
||||
<version>2.11.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jaxen</groupId>
|
||||
<artifactId>jaxen</artifactId>
|
||||
<version>1.1.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jdom</groupId>
|
||||
<artifactId>jdom</artifactId>
|
||||
<version>1.1.3</version>
|
||||
</dependency>
|
||||
<!--
|
||||
runtime has no 3rd party deps. This allows us to
|
||||
pass this dependency into the project's classpath
|
||||
at runtime without risk of introducing dep version
|
||||
clashes e.g. projects which require an older version of
|
||||
asm (namely Hibernate).
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>net.sourceforge.cobertura</groupId>
|
||||
<artifactId>cobertura-runtime</artifactId>
|
||||
<version>${coberturaVersion}</version>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>urbanophile</groupId>
|
||||
<artifactId>java-getopt</artifactId>
|
||||
<version>1.0.9</version>
|
||||
</dependency>
|
||||
<!-- maven plugin deps -->
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-core</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-artifact</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-api</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-project</artifactId>
|
||||
<version>${mavenVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-impl</artifactId>
|
||||
<version>2.0.4.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<version>2.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>2.0.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.shared</groupId>
|
||||
<artifactId>maven-invoker</artifactId>
|
||||
<version>2.0.11</version>
|
||||
</dependency>
|
||||
<!-- testing deps -->
|
||||
<dependency>
|
||||
<groupId>httpunit</groupId>
|
||||
<artifactId>httpunit</artifactId>
|
||||
<version>1.6.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.8.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.shared</groupId>
|
||||
<artifactId>maven-plugin-testing-harness</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<!-- @todo This is here so that we can use SNAPSHOT versions of Cobertura - remove before release -->
|
||||
<id>ossrh</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-changes-plugin</artifactId>
|
||||
<version>2.11</version>
|
||||
<configuration>
|
||||
<onlyCurrentVersion>true</onlyCurrentVersion>
|
||||
<columnNames>Type,Key,Summary,Status,Resolution,Assignee</columnNames>
|
||||
<sortColumnNames>Type,Key</sortColumnNames>
|
||||
<maxEntries>250</maxEntries>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>jira-report</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>run-its</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipTests</name>
|
||||
<value>!true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<configuration>
|
||||
<debug>true</debug>
|
||||
<projectsDirectory>src/it</projectsDirectory>
|
||||
<preBuildHookScript>setup</preBuildHookScript>
|
||||
<postBuildHookScript>verify</postBuildHookScript>
|
||||
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
<goal>site</goal>
|
||||
</goals>
|
||||
<settingsFile>src/it/settings.xml</settingsFile>
|
||||
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>integration-test</id>
|
||||
<goals>
|
||||
<goal>install</goal>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>updateLicenseHeaders</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>updateLicense</name>
|
||||
</property>
|
||||
</activation>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<!--
|
||||
Copies license data to source files and LICENSE.txt files to artifacts.
|
||||
|
||||
Why: Ensures that licenses are correctly provided.
|
||||
Used: Standard lifecycle. mvn process-sources, mvn generate-sources.
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
<configuration>
|
||||
<canUpdateDescription>true</canUpdateDescription>
|
||||
<failOnMissingHeader>true</failOnMissingHeader>
|
||||
<acceptPomPackaging>true</acceptPomPackaging>
|
||||
<licenseName>apache_v2</licenseName>
|
||||
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
|
||||
<roots>
|
||||
<root>src/main</root>
|
||||
<root>src/test</root>
|
||||
<root>src/site</root>
|
||||
</roots>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>update-file-header</id>
|
||||
<phase>process-sources</phase>
|
||||
<goals>
|
||||
<goal>update-file-header</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>add-license</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>update-project-license</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
b66c703679b6821c5a141c18ee18ca65d2ea58fa
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:05 CEST 2023
|
||||
findbugs-maven-plugin-3.0.3.pom>central=
|
||||
findbugs-maven-plugin-3.0.3.jar>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
fa38fb75bf3d2a4d22de622c3fbedc911cd1a90a
|
||||
+664
@@ -0,0 +1,664 @@
|
||||
<?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/xsd/maven-4.0.0.xsd ">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>mojo-parent</artifactId>
|
||||
<version>35</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>3.0.3</version>
|
||||
<packaging>maven-plugin</packaging>
|
||||
|
||||
<name>FindBugs Maven Plugin</name>
|
||||
<description>This Plug-In generates reports based on the FindBugs Library</description>
|
||||
<url>http://gleclaire.github.io/findbugs-maven-plugin/</url>
|
||||
<inceptionYear>2005</inceptionYear>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<!--
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>sonatype</id>
|
||||
<name>SonaType Staging</name>
|
||||
<url>https://oss.sonatype.org/content/repositories/staging/</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
-->
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>cr</id>
|
||||
<name>Cyrill Ruettimann</name>
|
||||
<email>mypublicaddress@mac.com</email>
|
||||
<roles>
|
||||
<role>Documentation</role>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>gl</id>
|
||||
<name>Garvin LeClaire</name>
|
||||
<email>gleclaire@codehaus.org</email>
|
||||
<url>http://gdleclaire.blogspot.com</url>
|
||||
<roles>
|
||||
<role>Documentation</role>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>-5</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Olivier Lamy</name>
|
||||
<email>olamy@apache.org</email>
|
||||
<organization />
|
||||
<organizationUrl>http://olamy.blogspot.com/</organizationUrl>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Detlef Pleiss</name>
|
||||
<email>d.pleiss@comundus.com</email>
|
||||
<organization>comundus GmbH</organization>
|
||||
<organizationUrl>http://www.comundus.com</organizationUrl>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rolf Kulemann</name>
|
||||
<email>roku@apache.org</email>
|
||||
<organization>NEO Business Partners</organization>
|
||||
<organizationUrl>http://www.neo-partners.com</organizationUrl>
|
||||
<roles>
|
||||
<role>Java Developer</role>
|
||||
</roles>
|
||||
<url>https://www.xing.com/profile/Rolf_Kulemann</url>
|
||||
<timezone>+1</timezone>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<prerequisites>
|
||||
<maven>3.0.1</maven>
|
||||
</prerequisites>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:gleclaire/findbugs-maven-plugin.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:gleclaire/findbugs-maven-plugin.git</developerConnection>
|
||||
<url>https://github.com/gleclaire/findbugs-maven-plugin</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>GitHub Issues</system>
|
||||
<url>http://github.com/gleclaire/findbugs-maven-plugin/issues</url>
|
||||
</issueManagement>
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>github-project-site</id>
|
||||
<url>gitsite:git@github.com/gleclaire/findbugs-maven-plugin.git</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<properties>
|
||||
<gmavenVersion>1.5</gmavenVersion>
|
||||
<groovyVersion>2.4.3</groovyVersion>
|
||||
<antVersion>1.9.4</antVersion>
|
||||
<doxiaVersion>1.4</doxiaVersion>
|
||||
<sitePluginVersion>3.4</sitePluginVersion>
|
||||
<project.build.java.target>1.7</project.build.java.target>
|
||||
<projectVersion>${project.version}</projectVersion>
|
||||
<compilerPluginVersion>2.3.2</compilerPluginVersion>
|
||||
<pluginPluginVersion>3.4</pluginPluginVersion>
|
||||
<findbugsVersion>3.0.1</findbugsVersion>
|
||||
<jxrPluginVersion>2.5</jxrPluginVersion>
|
||||
<fb-contribVersion>4.8.2</fb-contribVersion>
|
||||
<junitVersion>4.8.1</junitVersion>
|
||||
<mavenSurefireVersion>2.6</mavenSurefireVersion>
|
||||
<InfoReportsVersion>2.8</InfoReportsVersion>
|
||||
<findbugsTestDebug>false</findbugsTestDebug>
|
||||
<integrationTestSrc>${project.build.directory}/it-src-findbugs</integrationTestSrc>
|
||||
<localTestSrc>${user.dir}/FindBugs/findbugsTestCases/src</localTestSrc>
|
||||
<remoteTestSrc>scm:svn:http://findbugs.googlecode.com/svn/branches/1.3.9/findbugsTestCases/src</remoteTestSrc>
|
||||
<!-- <remoteTestSrc>scm:svn:http://findbugs.googlecode.com/svn/trunk/findbugsTestCases/src/java/</remoteTestSrc> -->
|
||||
<includesTestSrcPattern>**/A*.java, **/Use*.java</includesTestSrcPattern>
|
||||
<testSrc>remote</testSrc>
|
||||
|
||||
<pmd.skip>true</pmd.skip>
|
||||
<cpd.skip>true</cpd.skip>
|
||||
<checkstyle.skip>true</checkstyle.skip>
|
||||
<skipSurefireReport>true</skipSurefireReport>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>findbugs</artifactId>
|
||||
<version>${findbugsVersion}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- gmaven -->
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>${antVersion}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>${groovyVersion}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-impl</artifactId>
|
||||
<version>2.1</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-api</artifactId>
|
||||
<version>3.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||
<artifactId>maven-plugin-annotations</artifactId>
|
||||
<version>${pluginPluginVersion}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>2.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-descriptor</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-artifact</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- doxia -->
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-core</artifactId>
|
||||
<version>${doxiaVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-sink-api</artifactId>
|
||||
<version>${doxiaVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-decoration-model</artifactId>
|
||||
<version>${doxiaVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-site-renderer</artifactId>
|
||||
<version>${doxiaVersion}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-api</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.shared</groupId>
|
||||
<artifactId>maven-doxia-tools</artifactId>
|
||||
<version>1.2.1</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<!-- plexus -->
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-resources</artifactId>
|
||||
<version>1.0-alpha-7</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.5.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.sonatype.plexus</groupId>
|
||||
<artifactId>plexus-build-api</artifactId>
|
||||
<version>0.0.7</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<defaultGoal>install</defaultGoal>
|
||||
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.scm</groupId>
|
||||
<artifactId>maven-scm-provider-gitexe</artifactId>
|
||||
<version>1.8.1</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.scm</groupId>
|
||||
<artifactId>maven-scm-manager-plexus</artifactId>
|
||||
<version>1.8.1</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<!-- note you can download this from http://github.com/khuxtable/wagon-gitsite -->
|
||||
<groupId>org.kathrynhuxtable.maven.wagon</groupId>
|
||||
<artifactId>wagon-gitsite</artifactId>
|
||||
<version>0.3.1</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>${pluginPluginVersion}</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>${sitePluginVersion}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-descriptor</id>
|
||||
<phase>process-classes</phase>
|
||||
</execution>
|
||||
<!-- if you want to generate help goal -->
|
||||
<execution>
|
||||
<id>help-goal</id>
|
||||
<goals>
|
||||
<goal>helpmojo</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>2.3.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.gmavenplus</groupId>
|
||||
<artifactId>gmavenplus-plugin</artifactId>
|
||||
<version>${gmavenVersion}</version>
|
||||
<configuration>
|
||||
<groovydocOutputDirectory>${project.reporting.outputDirectory}/apidocs</groovydocOutputDirectory>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>compileGroovy</id>
|
||||
<goals>
|
||||
<goal>addSources</goal>
|
||||
<goal>addTestSources</goal>
|
||||
<goal>generateStubs</goal>
|
||||
<goal>compile</goal>
|
||||
<goal>testGenerateStubs</goal>
|
||||
<goal>testCompile</goal>
|
||||
<!--
|
||||
<goal>removeStubs</goal>
|
||||
<goal>removeTestStubs</goal>
|
||||
-->
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>site</id>
|
||||
<phase>site</phase>
|
||||
<goals>
|
||||
<goal>groovydoc</goal>
|
||||
<goal>testGroovydoc</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<skipTests>true</skipTests>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<instrumentation>
|
||||
<ignores>
|
||||
<ignore>org.codehaus.mojo.findbugs.*</ignore>
|
||||
</ignores>
|
||||
<excludes>
|
||||
<exclude>org/codehaus/mojo/findbugs/**/*.class</exclude>
|
||||
</excludes>
|
||||
</instrumentation>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<configuration>
|
||||
<pushChanges>false</pushChanges>
|
||||
<localCheckout>true</localCheckout>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<reporting>
|
||||
<excludeDefaults>true</excludeDefaults>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<configuration>
|
||||
<skip>true</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>${pluginPluginVersion}</version>
|
||||
<configuration>
|
||||
<requirements>
|
||||
<jdk>${project.build.java.target}</jdk>
|
||||
</requirements>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>${InfoReportsVersion}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>l10n-maven-plugin</artifactId>
|
||||
<version>1.0-alpha-2</version>
|
||||
<configuration>
|
||||
<locales>
|
||||
<locale>es</locale>
|
||||
<locale>fr</locale>
|
||||
<locale>no_NO</locale>
|
||||
<locale>pt_BR</locale>
|
||||
</locales>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>codenarc-maven-plugin</artifactId>
|
||||
<version>0.22-1</version>
|
||||
<configuration>
|
||||
<maxPriority1Violations>0</maxPriority1Violations>
|
||||
<maxPriority2Violations>0</maxPriority2Violations>
|
||||
<maxPriority3Violations>5</maxPriority3Violations>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>${project.artifactId}</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>${InfoReportsVersion}</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>cim</report>
|
||||
<report>dependency-info</report>
|
||||
<report>dependencies</report>
|
||||
<report>dependency-convergence</report>
|
||||
<report>dependency-management</report>
|
||||
<report>index</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>license</report>
|
||||
<report>mailing-list</report>
|
||||
<report>plugin-management</report>
|
||||
<report>project-team</report>
|
||||
<report>scm</report>
|
||||
<report>summary</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>dependency-updates-report</report>
|
||||
<report>plugin-updates-report</report>
|
||||
<report>property-updates-report</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>run-its</id>
|
||||
<properties>
|
||||
<findbug.debug>false</findbug.debug>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>prepare-integration-test</id>
|
||||
<phase>pre-integration-test</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<projectsDirectory>${basedir}/src/it-tools</projectsDirectory>
|
||||
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
||||
<showVersion>true</showVersion>
|
||||
<pomIncludes>
|
||||
<pomInclude>*/pom.xml</pomInclude>
|
||||
</pomIncludes>
|
||||
<postBuildHookScript>verify</postBuildHookScript>
|
||||
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
<goal>install</goal>
|
||||
</goals>
|
||||
<settingsFile>src/it/settings.xml</settingsFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>integration-test</id>
|
||||
<goals>
|
||||
<goal>install</goal>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<projectsDirectory>src/it</projectsDirectory>
|
||||
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
||||
<showVersion>true</showVersion>
|
||||
<pomIncludes>
|
||||
<pomInclude>*/pom.xml</pomInclude>
|
||||
</pomIncludes>
|
||||
<postBuildHookScript>verify</postBuildHookScript>
|
||||
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
||||
<settingsFile>src/it/settings.xml</settingsFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>find-it-src-export</id>
|
||||
<activation>
|
||||
<!-- <file> -->
|
||||
<!-- <missing>${integrationTestSrc}/A.java</missing> -->
|
||||
<!-- </file> -->
|
||||
<property>
|
||||
<name>testSrc</name>
|
||||
<value>remote</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-scm-plugin</artifactId>
|
||||
<version>1.9.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>prepare-integration-test-remote-findbugs-src</id>
|
||||
<phase>pre-integration-test</phase>
|
||||
<goals>
|
||||
<goal>export</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<connectionUrl>${remoteTestSrc}</connectionUrl>
|
||||
<exportDirectory>${integrationTestSrc}</exportDirectory>
|
||||
<providerImplementations>
|
||||
<svn>javasvn</svn>
|
||||
</providerImplementations>
|
||||
<includes>${includesTestSrcPattern}</includes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.google.code.maven-scm-provider-svnjava</groupId>
|
||||
<artifactId>maven-scm-provider-svnjava</artifactId>
|
||||
<version>1.11</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>find-it-src-local</id>
|
||||
<activation>
|
||||
<!-- <file> -->
|
||||
<!-- <missing>${integrationTestSrc}/A.java</missing> -->
|
||||
<!-- </file> -->
|
||||
<property>
|
||||
<name>testSrc</name>
|
||||
<value>local</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>prepare-integration-test-local-findbugs-src</id>
|
||||
<phase>pre-integration-test</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<target>
|
||||
|
||||
<echo>Copying Source for Tests......</echo>
|
||||
<mkdir dir="${integrationTestSrc}" />
|
||||
<copy todir="${integrationTestSrc}">
|
||||
<fileset dir="${localTestSrc}" includes="${includesTestSrcPattern}" />
|
||||
</copy>
|
||||
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
</profiles>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
ba4972e2ec3de53228d33c3441c507692b8bdd8f
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:05 CEST 2023
|
||||
javancss-maven-plugin-2.1.jar>central=
|
||||
javancss-maven-plugin-2.1.pom>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
b4378bff9b06f56b987a8c314c2df8632b2ae6c3
|
||||
+235
@@ -0,0 +1,235 @@
|
||||
<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.codehaus.mojo</groupId>
|
||||
<artifactId>mojo-parent</artifactId>
|
||||
<version>34</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
<packaging>maven-plugin</packaging>
|
||||
<version>2.1</version>
|
||||
|
||||
<name>JavaNCSS Maven Plugin</name>
|
||||
<description>Maven2 plugin generating NCSS and CCN code metrics.</description>
|
||||
<inceptionYear>2005</inceptionYear>
|
||||
|
||||
<prerequisites>
|
||||
<maven>2.0</maven>
|
||||
</prerequisites>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License 2</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/MJNCSS</url>
|
||||
</issueManagement>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/mojo/tags/javancss-maven-plugin-2.1</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/javancss-maven-plugin-2.1</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/mojo/tags/javancss-maven-plugin-2.1</url>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Jean-Laurent de Morlhon</name>
|
||||
<id>jeanlaurent</id>
|
||||
<email>jeanlaurent@codehaus.org</email>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Mike Perham</name>
|
||||
<id>mperham</id>
|
||||
<email>mperham@gmail.com</email>
|
||||
<timezone>-6</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>hboutemy</id>
|
||||
<name>Hervé Boutemy</name>
|
||||
<email>hboutemy@codehaus.org</email>
|
||||
<timezone>Europe/Paris</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||
<artifactId>maven-plugin-annotations</artifactId>
|
||||
<version>3.2</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0.14</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-project</artifactId>
|
||||
<version>2.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-model</artifactId>
|
||||
<version>2.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-api</artifactId>
|
||||
<version>3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-sink-api</artifactId>
|
||||
<version>1.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-core</artifactId>
|
||||
<version>1.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>dom4j</groupId>
|
||||
<artifactId>dom4j</artifactId>
|
||||
<version>1.6.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jaxen</groupId>
|
||||
<artifactId>jaxen</artifactId>
|
||||
<version>1.1.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.reporting</groupId>
|
||||
<artifactId>maven-reporting-impl</artifactId>
|
||||
<version>2.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.javancss</groupId>
|
||||
<artifactId>javancss</artifactId>
|
||||
<version>${javancss-version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>easymock</groupId>
|
||||
<artifactId>easymock</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<properties>
|
||||
<javancss-version>33.54</javancss-version>
|
||||
<sitePluginVersion>3.4</sitePluginVersion>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>3.3</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<configuration>
|
||||
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>mojo-descriptor</id>
|
||||
<goals>
|
||||
<goal>descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>check-docck</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-docck-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>run-its</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<configuration>
|
||||
<debug>true</debug>
|
||||
<projectsDirectory>src/it</projectsDirectory>
|
||||
<pomIncludes>
|
||||
<pomInclude>*/pom.xml</pomInclude>
|
||||
</pomIncludes>
|
||||
<postBuildHookScript>verify</postBuildHookScript>
|
||||
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
<goal>site</goal>
|
||||
</goals>
|
||||
<settingsFile>src/it/settings.xml</settingsFile>
|
||||
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
||||
<cloneAllFiles>true</cloneAllFiles>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>integration-test</id>
|
||||
<goals>
|
||||
<goal>install</goal>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
5984b896782bdf3a61674616066cde8d6da03fdc
|
||||
@@ -0,0 +1,670 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<name>Animal Sniffer Maven Plugin</name>
|
||||
<prefix>animal-sniffer</prefix>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven ANTLR Plugin</name>
|
||||
<prefix>antlr</prefix>
|
||||
<artifactId>antlr-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>ANTLR-v3 Maven Plugin</name>
|
||||
<prefix>antlr3</prefix>
|
||||
<artifactId>antlr3-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Appassembler :: Maven Plug-In</name>
|
||||
<prefix>appassembler</prefix>
|
||||
<artifactId>appassembler-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Appfuse Maven Plugin</name>
|
||||
<prefix>appfuse</prefix>
|
||||
<artifactId>appfuse-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Apt Maven Plugin</name>
|
||||
<prefix>apt</prefix>
|
||||
<artifactId>apt-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mojo's AspectJ Maven Plugin</name>
|
||||
<prefix>aspectj</prefix>
|
||||
<artifactId>aspectj-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Axis Tools Maven Plugin</name>
|
||||
<prefix>axistools</prefix>
|
||||
<artifactId>axistools-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Batik Maven Plugin</name>
|
||||
<prefix>batik</prefix>
|
||||
<artifactId>batik-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Build Helper Maven Plugin</name>
|
||||
<prefix>build-helper</prefix>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Dependency Builder Plugin</name>
|
||||
<prefix>build-on-demand</prefix>
|
||||
<artifactId>build-on-demand-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Build Number Maven Plugin</name>
|
||||
<prefix>buildnumber</prefix>
|
||||
<artifactId>buildnumber-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>BuildPlan Maven Plugin</name>
|
||||
<prefix>buildplan</prefix>
|
||||
<artifactId>buildplan-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mojo's Cassandra Maven Plugin</name>
|
||||
<prefix>cassandra</prefix>
|
||||
<artifactId>cassandra-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Castor Maven Plugin</name>
|
||||
<prefix>castor</prefix>
|
||||
<artifactId>castor-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven C-Build Lifecycle Mappings</name>
|
||||
<prefix>cbuild-lifecycles</prefix>
|
||||
<artifactId>cbuild-lifecycles</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Changelog Plug-in</name>
|
||||
<prefix>changelog</prefix>
|
||||
<artifactId>changelog-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Changes Report Plugin</name>
|
||||
<prefix>changes</prefix>
|
||||
<artifactId>changes-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Chronos JMeter</name>
|
||||
<prefix>chronos-jmeter</prefix>
|
||||
<artifactId>chronos-jmeter-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Chronos Report</name>
|
||||
<prefix>chronos-report</prefix>
|
||||
<artifactId>chronos-report-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Chronos Surefire</name>
|
||||
<prefix>chronos-surefire</prefix>
|
||||
<artifactId>chronos-surefire-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Clirr Maven Plugin</name>
|
||||
<prefix>clirr</prefix>
|
||||
<artifactId>clirr-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mojo's Maven plugin for Cobertura</name>
|
||||
<prefix>cobertura</prefix>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>CodeNarc Maven Plugin</name>
|
||||
<prefix>codenarc</prefix>
|
||||
<artifactId>codenarc-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Commons Attributes Plugin</name>
|
||||
<prefix>commons-attributes</prefix>
|
||||
<artifactId>commons-attributes-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Dashboard Report Plugin</name>
|
||||
<prefix>dashboard</prefix>
|
||||
<artifactId>dashboard-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>DbUnit Plugin</name>
|
||||
<prefix>dbunit</prefix>
|
||||
<artifactId>dbunit-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Database Upgrade Plugin</name>
|
||||
<prefix>dbupgrade</prefix>
|
||||
<artifactId>dbupgrade-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Dependency Maven Plugin</name>
|
||||
<prefix>dependency</prefix>
|
||||
<artifactId>dependency-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Deploy All Plugin for Maven</name>
|
||||
<prefix>deploy-all</prefix>
|
||||
<artifactId>deploy-all-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>DITA Open Toolkit Maven Plugin</name>
|
||||
<prefix>dita</prefix>
|
||||
<artifactId>dita-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>DITA Open Toolkit Maven Plugin</name>
|
||||
<prefix>ditaot</prefix>
|
||||
<artifactId>ditaot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Docbook plugin</name>
|
||||
<prefix>docbook</prefix>
|
||||
<artifactId>docbook-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Emma Maven Plugin</name>
|
||||
<prefix>emma</prefix>
|
||||
<artifactId>emma-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Enchanter Maven Plugin</name>
|
||||
<prefix>enchanter</prefix>
|
||||
<artifactId>enchanter-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Exec Maven Plugin</name>
|
||||
<prefix>exec</prefix>
|
||||
<artifactId>exec-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Failsafe Maven Plugin</name>
|
||||
<prefix>failsafe</prefix>
|
||||
<artifactId>failsafe-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>FindBugs Maven Plugin</name>
|
||||
<prefix>findbugs</prefix>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Fit Maven Plugin</name>
|
||||
<prefix>fit</prefix>
|
||||
<artifactId>fit-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Fitnesse plugin.</name>
|
||||
<prefix>fitnesse</prefix>
|
||||
<artifactId>fitnesse-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Flatten Plugin</name>
|
||||
<prefix>flatten</prefix>
|
||||
<artifactId>flatten-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Groovy Maven Plugin</name>
|
||||
<prefix>groovy</prefix>
|
||||
<artifactId>groovy-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mojo's Maven Plugin for GWT</name>
|
||||
<prefix>gwt</prefix>
|
||||
<artifactId>gwt-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Hibernate3 Maven Plugin</name>
|
||||
<prefix>hibernate3</prefix>
|
||||
<artifactId>hibernate3-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>IANAL Maven Plugin</name>
|
||||
<prefix>ianal</prefix>
|
||||
<artifactId>ianal-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven IDEA UI Designer Plugin</name>
|
||||
<prefix>ideauidesigner</prefix>
|
||||
<artifactId>ideauidesigner-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>CORBA IDL Compiler Maven Plugin</name>
|
||||
<prefix>idlj</prefix>
|
||||
<artifactId>idlj-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Jalopy Maven Plugin</name>
|
||||
<prefix>jalopy</prefix>
|
||||
<artifactId>jalopy-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven JasperReports Plugin</name>
|
||||
<prefix>jasperreports</prefix>
|
||||
<artifactId>jasperreports-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JavaCC Maven Plugin</name>
|
||||
<prefix>javacc</prefix>
|
||||
<artifactId>javacc-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JavaNCSS Maven Plugin</name>
|
||||
<prefix>javancss</prefix>
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JAXB-2 Maven Plugin</name>
|
||||
<prefix>jaxb2</prefix>
|
||||
<artifactId>jaxb2-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JAX-WS Maven Plugin</name>
|
||||
<prefix>jaxws</prefix>
|
||||
<artifactId>jaxws-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JBoss Maven Plugin</name>
|
||||
<prefix>jboss</prefix>
|
||||
<artifactId>jboss-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JBoss Packaging Maven Plugin</name>
|
||||
<prefix>jboss-packaging</prefix>
|
||||
<artifactId>jboss-packaging-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JDepend Maven Plugin</name>
|
||||
<prefix>jdepend</prefix>
|
||||
<artifactId>jdepend-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JPox Maven Plugin</name>
|
||||
<prefix>jpox</prefix>
|
||||
<artifactId>jpox-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JRuby Mojo Support</name>
|
||||
<prefix>jruby</prefix>
|
||||
<artifactId>jruby-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JavaScript Import Maven Plugin</name>
|
||||
<prefix>js-import</prefix>
|
||||
<artifactId>js-import-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>JSLint Maven Plugin</name>
|
||||
<prefix>jslint</prefix>
|
||||
<artifactId>jslint-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Jspc plugin</name>
|
||||
<prefix>jspc</prefix>
|
||||
<artifactId>jspc-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven JXR Plugin</name>
|
||||
<prefix>jxr</prefix>
|
||||
<artifactId>jxr-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Keytool: Maven Plugin</name>
|
||||
<prefix>keytool</prefix>
|
||||
<artifactId>keytool-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Localization Tools Maven Plugin</name>
|
||||
<prefix>l10n</prefix>
|
||||
<artifactId>l10n-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>LaTeX Maven Plugin</name>
|
||||
<prefix>latex</prefix>
|
||||
<artifactId>latex-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>LESS CSS Maven Plugin</name>
|
||||
<prefix>lesscss</prefix>
|
||||
<artifactId>lesscss-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>License Maven Plugin</name>
|
||||
<prefix>license</prefix>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Local Configuration Plugin</name>
|
||||
<prefix>local-config</prefix>
|
||||
<artifactId>local-config-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Makefile Orchestration Plugin</name>
|
||||
<prefix>make</prefix>
|
||||
<artifactId>make-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven JPox Plugin</name>
|
||||
<prefix>jpox</prefix>
|
||||
<artifactId>maven-jpox-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven MiniJar Plugin</name>
|
||||
<prefix>minijar</prefix>
|
||||
<artifactId>minijar-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mock Repository Manager :: Maven Plugin</name>
|
||||
<prefix>mrm</prefix>
|
||||
<artifactId>mrm-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Multimodule Build Optimizer Plugin</name>
|
||||
<prefix>multibuild-optimizer</prefix>
|
||||
<artifactId>multibuild-optimizer-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Native Maven Plugin</name>
|
||||
<prefix>native</prefix>
|
||||
<artifactId>native-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Native2Ascii Maven Plugin</name>
|
||||
<prefix>native2ascii</prefix>
|
||||
<artifactId>native2ascii-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>NB Repository Plugin</name>
|
||||
<prefix>nb-repository</prefix>
|
||||
<artifactId>nb-repository-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>NBM Maven Plugin</name>
|
||||
<prefix>nbm</prefix>
|
||||
<artifactId>nbm-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Netbeans Freeform Maven Plugin</name>
|
||||
<prefix>netbeans-freeform</prefix>
|
||||
<artifactId>netbeans-freeform-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Mojo's Maven Plugin for NSIS</name>
|
||||
<prefix>nsis</prefix>
|
||||
<artifactId>nsis-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>OpenJPA Maven Plugin</name>
|
||||
<prefix>openjpa</prefix>
|
||||
<artifactId>openjpa-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven OS X Application Bundle Plugin</name>
|
||||
<prefix>osxappbundle</prefix>
|
||||
<artifactId>osxappbundle-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Ounce Maven Plugin</name>
|
||||
<prefix>ounce</prefix>
|
||||
<artifactId>ounce-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Patch Plugin</name>
|
||||
<prefix>patch</prefix>
|
||||
<artifactId>patch-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Eclipse PDE Maven Plugin</name>
|
||||
<prefix>pde</prefix>
|
||||
<artifactId>pde-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Platform Attribute Detector Plugin for Maven</name>
|
||||
<prefix>platform-detector</prefix>
|
||||
<artifactId>platform-detector-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Project Archive Plugin</name>
|
||||
<prefix>project-archive</prefix>
|
||||
<artifactId>project-archive-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Project Sources Plugin</name>
|
||||
<prefix>project-sources</prefix>
|
||||
<artifactId>project-sources-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Properties Maven Plugin</name>
|
||||
<prefix>properties</prefix>
|
||||
<artifactId>properties-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>RAT Maven Plugin</name>
|
||||
<prefix>rat</prefix>
|
||||
<artifactId>rat-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Remote-Source Plugin</name>
|
||||
<prefix>remote-source</prefix>
|
||||
<artifactId>remote-source-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Retrotranslator MAven Plugin</name>
|
||||
<prefix>retrotranslator</prefix>
|
||||
<artifactId>retrotranslator-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>RMI Compiler Maven Plugin</name>
|
||||
<prefix>rmic</prefix>
|
||||
<artifactId>rmic-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>RPM Plugin</name>
|
||||
<prefix>rpm-cbuild</prefix>
|
||||
<artifactId>rpm-cbuild-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>RPM Maven Plugin</name>
|
||||
<prefix>rpm</prefix>
|
||||
<artifactId>rpm-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>RSpec Maven Plugin</name>
|
||||
<prefix>rspec</prefix>
|
||||
<artifactId>rspec-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven 2 SableCC Plugin</name>
|
||||
<prefix>sablecc</prefix>
|
||||
<artifactId>sablecc-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven SCM Changelog Reporter</name>
|
||||
<prefix>scmchangelog</prefix>
|
||||
<artifactId>scmchangelog-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Selenium Plugin</name>
|
||||
<prefix>selenium</prefix>
|
||||
<artifactId>selenium-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Service Documentation Generator Plugin</name>
|
||||
<prefix>servicedocgen</prefix>
|
||||
<artifactId>servicedocgen-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Settings Management Plugin</name>
|
||||
<prefix>settings</prefix>
|
||||
<artifactId>settings-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>shade-maven-plugin</name>
|
||||
<prefix>shade</prefix>
|
||||
<artifactId>shade-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Shell Script Executor Plugin</name>
|
||||
<prefix>shell</prefix>
|
||||
<artifactId>shell-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Ship Maven Plugin</name>
|
||||
<prefix>ship</prefix>
|
||||
<artifactId>ship-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Super Helpful Integration Testing ThingY (SHITTY) Maven Plugin</name>
|
||||
<prefix>shitty</prefix>
|
||||
<artifactId>shitty-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>SiteSkinner Maven Plugin</name>
|
||||
<prefix>siteskinner</prefix>
|
||||
<artifactId>siteskinner-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>State Machine Compiler (SMC) Maven Plugin</name>
|
||||
<prefix>smc</prefix>
|
||||
<artifactId>smc-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Solaris Plugin</name>
|
||||
<prefix>solaris</prefix>
|
||||
<artifactId>solaris-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>SonarQube Maven Plugin</name>
|
||||
<prefix>sonar</prefix>
|
||||
<artifactId>sonar-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>springdoclet</name>
|
||||
<prefix>springdoclet</prefix>
|
||||
<artifactId>springdoclet-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>springws-maven-plugin</name>
|
||||
<prefix>springws</prefix>
|
||||
<artifactId>springws-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>SQL Plugin for Maven</name>
|
||||
<prefix>sql</prefix>
|
||||
<artifactId>sql-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>SQLJ Maven Plugin</name>
|
||||
<prefix>sqlj</prefix>
|
||||
<artifactId>sqlj-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Surefire Report Plugin</name>
|
||||
<prefix>surefire-report</prefix>
|
||||
<artifactId>surefire-report-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Sysdeo Tomcat Maven Plugin</name>
|
||||
<prefix>sysdeo-tomcat</prefix>
|
||||
<artifactId>sysdeo-tomcat-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Taglist Maven Plugin</name>
|
||||
<prefix>taglist</prefix>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Templating Maven Plugin</name>
|
||||
<prefix>templating</prefix>
|
||||
<artifactId>templating-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Tidy Maven Plugin</name>
|
||||
<prefix>tidy</prefix>
|
||||
<artifactId>tidy-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Tomcat Maven Plugin</name>
|
||||
<prefix>tomcat</prefix>
|
||||
<artifactId>tomcat-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Plugin for TrueZIP</name>
|
||||
<prefix>truezip</prefix>
|
||||
<artifactId>truezip-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven Unix Plug-In</name>
|
||||
<prefix>unix</prefix>
|
||||
<artifactId>unix-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Versions Maven Plugin</name>
|
||||
<prefix>versions</prefix>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven VFS plugin</name>
|
||||
<prefix>vfs</prefix>
|
||||
<artifactId>vfs-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Wagon Maven Plugin</name>
|
||||
<prefix>wagon</prefix>
|
||||
<artifactId>wagon-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>WAS6 Maven Plugin</name>
|
||||
<prefix>was6</prefix>
|
||||
<artifactId>was6-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>webdoclet</name>
|
||||
<prefix>webdoclet</prefix>
|
||||
<artifactId>webdoclet-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Weblogic Maven Plugin</name>
|
||||
<prefix>weblogic</prefix>
|
||||
<artifactId>weblogic-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Web Minifier Maven Plugin</name>
|
||||
<prefix>webminifier</prefix>
|
||||
<artifactId>webminifier-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>MWEBSTART :: Webstart Maven Plugin</name>
|
||||
<prefix>webstart</prefix>
|
||||
<artifactId>webstart-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Canoo WebTest Maven Plugin</name>
|
||||
<prefix>webtest</prefix>
|
||||
<artifactId>webtest-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>XDoclet Maven Plugin</name>
|
||||
<prefix>xdoclet</prefix>
|
||||
<artifactId>xdoclet-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>XML Maven Plugin</name>
|
||||
<prefix>xml</prefix>
|
||||
<artifactId>xml-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven XML Beans Plugin</name>
|
||||
<prefix>xmlbeans</prefix>
|
||||
<artifactId>xmlbeans-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<name>Maven XSLT Plugin</name>
|
||||
<prefix>xslt</prefix>
|
||||
<artifactId>xslt-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</metadata>
|
||||
@@ -0,0 +1 @@
|
||||
cde74f96a711436e250d9a82d9650c3e3a167749
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:05 CEST 2023
|
||||
mojo-parent-34.pom>central=
|
||||
@@ -0,0 +1,667 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
|
||||
<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.codehaus</groupId>
|
||||
<artifactId>codehaus-parent</artifactId>
|
||||
<version>4</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>mojo-parent</artifactId>
|
||||
<version>34</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Codehaus Mojo Parent</name>
|
||||
<url>http://mojo.codehaus.org</url>
|
||||
<organization>
|
||||
<name>Codehaus</name>
|
||||
<url>http://codehaus.org</url>
|
||||
</organization>
|
||||
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Development List</name>
|
||||
<subscribe>dev-subscribe@mojo.codehaus.org</subscribe>
|
||||
<unsubscribe>dev-unsubscribe@mojo.codehaus.org</unsubscribe>
|
||||
<post>dev@mojo.codehaus.org</post>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.dev</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/Developer-f3.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>User List</name>
|
||||
<subscribe>user-subscribe@mojo.codehaus.org</subscribe>
|
||||
<unsubscribe>user-unsubscribe@mojo.codehaus.org</unsubscribe>
|
||||
<post>user@mojo.codehaus.org</post>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.user</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/User-f34162.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Commits List</name>
|
||||
<subscribe>scm-subscribe@mojo.codehaus.org</subscribe>
|
||||
<unsubscribe>scm-unsubscribe@mojo.codehaus.org</unsubscribe>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.scm</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Announcements List</name>
|
||||
<subscribe>announce-subscribe@mojo.codehaus.org</subscribe>
|
||||
<unsubscribe>announce-unsubscribe@mojo.codehaus.org</unsubscribe>
|
||||
<post>announce@mojo.codehaus.org</post>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.announce</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/Announce-f38303.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
|
||||
<!-- This has NO effect on mojo-projects using this parent.
|
||||
This just mean that you need maven 2.2.1 to build the mojo-parent -->
|
||||
<prerequisites>
|
||||
<maven>2.2.1</maven>
|
||||
</prerequisites>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/mojo/tags/mojo-parent-34</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/mojo-parent-34</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/mojo/tags/mojo-parent-34</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://jira.codehaus.org/browse/MOJO</url>
|
||||
</issueManagement>
|
||||
<ciManagement>
|
||||
<system>bamboo</system>
|
||||
<url>http://bamboo.ci.codehaus.org/browse/MOJO</url>
|
||||
</ciManagement>
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>codehaus.org</id>
|
||||
<name>Mojo Website</name>
|
||||
<url>dav:https://dav.codehaus.org/mojo/</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<mojo.javadoc.mavenVersion>${project.prerequisites.maven}</mojo.javadoc.mavenVersion>
|
||||
<mojo.java.target>1.5</mojo.java.target>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<!-- NOTE: We deliberately do not set maven.test.redirectTestOutputToFile here to workaround MNG-1992 -->
|
||||
<surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile>
|
||||
<!-- this property makes sure NetBeans 6.8+ picks up some formatting rules from checkstyle -->
|
||||
<netbeans.checkstyle.format>true</netbeans.checkstyle.format>
|
||||
</properties>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>codehaus-snapshots</id>
|
||||
<name>Codehaus Snapshots</name>
|
||||
<url>http://nexus.codehaus.org/snapshots/</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.11</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.4.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.13</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.1</version>
|
||||
<configuration>
|
||||
<source>${mojo.java.target}</source>
|
||||
<target>${mojo.java.target}</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.9</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.3.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<version>1.9</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.9.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>3.3</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>help-mojo</id>
|
||||
<goals>
|
||||
<goal>helpmojo</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.1</version>
|
||||
<configuration>
|
||||
<tagBase>https://svn.codehaus.org/mojo/tags</tagBase>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<arguments>-Pmojo-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.17</version>
|
||||
<configuration>
|
||||
<redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.17</version>
|
||||
</plugin>
|
||||
<!-- Codehaus plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
<version>1.11</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>l10n-maven-plugin</artifactId>
|
||||
<version>1.0-alpha-2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>1.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-maven-plugin</artifactId>
|
||||
<version>1.3.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>mojo-enforcer-rules</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<bannedDependencies>
|
||||
<excludes>
|
||||
<exclude>org.codehaus.plexus:plexus-component-api</exclude>
|
||||
</excludes>
|
||||
<message>The plexus-component-api conflicts with the plexus-container-default used by Maven. You probably added a dependency that is missing the exclusions.</message>
|
||||
</bannedDependencies>
|
||||
<requireNoRepositories>
|
||||
<message>Mojo is synchronized with repo1.maven.org. The rules for repo1.maven.org are that pom.xml files should not include repository definitions. If repository definitions are included, they must be limited to SNAPSHOT only repositories.</message>
|
||||
<banRepositories>true</banRepositories>
|
||||
<banPluginRepositories>true</banPluginRepositories>
|
||||
<allowSnapshotRepositories>true</allowSnapshotRepositories>
|
||||
<allowedPluginRepositories>
|
||||
<allowedPluginRepository>codehaus-snapshots</allowedPluginRepository>
|
||||
<allowedPluginRepository>apache.snapshots</allowedPluginRepository>
|
||||
</allowedPluginRepositories>
|
||||
</requireNoRepositories>
|
||||
<requirePluginVersions>
|
||||
<message>Best Practice is to always define plugin versions!</message>
|
||||
<banLatest>true</banLatest>
|
||||
<banRelease>true</banRelease>
|
||||
</requirePluginVersions>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav-jackrabbit</artifactId>
|
||||
<version>2.7</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>3.3</version>
|
||||
<configuration>
|
||||
<requirements>
|
||||
<!--
|
||||
NOTE: Maven 2.x does not interpolate properties of the form project.*|pom.* so the Maven Plugin Plugin
|
||||
gets garbage when manually examining the config of the Maven Compiler Plugin.
|
||||
-->
|
||||
<jdk>${mojo.java.target}</jdk>
|
||||
</requirements>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>cim</report>
|
||||
<report>dependency-info</report>
|
||||
<report>index</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>mailing-list</report>
|
||||
<report>project-team</report>
|
||||
<report>scm</report>
|
||||
<report>summary</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>mojo-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.apache.resources</groupId>
|
||||
<artifactId>apache-source-release-assembly-descriptor</artifactId>
|
||||
<version>1.0.4</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-source-release-distro</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>source-release</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<tarLongFileFormat>gnu</tarLongFileFormat>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<updateReleaseInfo>true</updateReleaseInfo>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>reporting</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipReports</name>
|
||||
<value>!true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.13</version>
|
||||
<configuration>
|
||||
<configLocation>config/maven_checks.xml</configLocation>
|
||||
<headerLocation>config/maven-header.txt</headerLocation>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>checkstyle</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.9.1</version>
|
||||
<configuration>
|
||||
<quiet>true</quiet>
|
||||
<links>
|
||||
<link>http://junit.sourceforge.net/javadoc/</link>
|
||||
</links>
|
||||
<tagletArtifacts>
|
||||
<tagletArtifact>
|
||||
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||
<artifactId>maven-plugin-tools-javadoc</artifactId>
|
||||
<version>3.3</version>
|
||||
</tagletArtifact>
|
||||
<tagletArtifact>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-javadoc</artifactId>
|
||||
<version>1.5.5</version>
|
||||
</tagletArtifact>
|
||||
</tagletArtifacts>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>javadoc</report>
|
||||
<report>test-javadoc</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.2</version>
|
||||
<configuration>
|
||||
<targetJdk>${mojo.java.target}</targetJdk>
|
||||
<rulesets>
|
||||
<ruleset>http://svn.codehaus.org/mojo/tags/mojo-parent-34/src/main/config/pmd/mojo_rules.xml</ruleset>
|
||||
</rulesets>
|
||||
<excludeRoots>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/antlr</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/javacc</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/modello</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/plugin</excludeRoot>
|
||||
</excludeRoots>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>cim</report>
|
||||
<report>dependencies</report>
|
||||
<report>dependency-convergence</report>
|
||||
<report>dependency-info</report>
|
||||
<report>dependency-management</report>
|
||||
<report>index</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>license</report>
|
||||
<report>mailing-list</report>
|
||||
<report>plugin-management</report>
|
||||
<report>project-team</report>
|
||||
<report>scm</report>
|
||||
<report>summary</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.17</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>report</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<!-- Codehaus plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
<configuration>
|
||||
<instrumentation>
|
||||
<excludes>
|
||||
<exclude>**/HelpMojo.class</exclude>
|
||||
</excludes>
|
||||
</instrumentation>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>maven-3</id>
|
||||
<activation>
|
||||
<file>
|
||||
<!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
|
||||
<exists>${basedir}</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<!-- if releasing current pom with maven 3 site descriptor must be attached -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<inherited>false</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-descriptor</id>
|
||||
<goals>
|
||||
<goal>attach-descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
803dc5cf36e504c5a48aa9a321f7fba1d6396733
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:05 CEST 2023
|
||||
mojo-parent-35.pom>central=
|
||||
@@ -0,0 +1,686 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
|
||||
<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.codehaus</groupId>
|
||||
<artifactId>codehaus-parent</artifactId>
|
||||
<version>4</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>mojo-parent</artifactId>
|
||||
<version>35</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>MojoHaus Parent</name>
|
||||
<url>http://www.mojohaus.org</url>
|
||||
<organization>
|
||||
<name>MojoHaus</name>
|
||||
<url>http://www.mojohaus.org</url>
|
||||
</organization>
|
||||
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Development List</name>
|
||||
<subscribe>mojohaus-dev+subscribe@googlegroups.com</subscribe>
|
||||
<unsubscribe>mojohaus-dev+unsubscribe@googlegroups.com</unsubscribe>
|
||||
<post>mojohaus-dev@googlegroups.com</post>
|
||||
<archive>https://groups.google.com/forum/#!forum/mojohaus-dev</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Former (pre-2015-06) Development List</name>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.dev</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/Developer-f3.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Former (pre-2015-06) User List</name>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.user</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/User-f34162.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Former (pre-2015-06) Commits List</name>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.scm</archive>
|
||||
</mailingList>
|
||||
<mailingList>
|
||||
<name>Former (pre-2015-06) Announcements List</name>
|
||||
<archive>http://markmail.org/list/org.codehaus.mojo.announce</archive>
|
||||
<otherArchives>
|
||||
<otherArchive>http://mojo.10943.n7.nabble.com/Announce-f38303.html</otherArchive>
|
||||
</otherArchives>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
<!-- This has NO effect on mojo-projects using this parent.
|
||||
This just mean that you need maven 2.2.1 to build the mojo-parent -->
|
||||
<prerequisites>
|
||||
<maven>2.2.1</maven>
|
||||
</prerequisites>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/mojohaus/mojo-parent</connection>
|
||||
<developerConnection>scm:git:ssh://git@github.com/mojohaus/mojo-parent</developerConnection>
|
||||
<url>https://github.com/mojohaus/mojo-parent</url>
|
||||
<tag>mojo-parent-35</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>github</system>
|
||||
<url>https://github.com/mojohaus/mojo-parent/issues</url>
|
||||
</issueManagement>
|
||||
<ciManagement>
|
||||
<system>Travis</system>
|
||||
<url>https://travis-ci.org/mojohaus/${project.artifactId}</url>
|
||||
</ciManagement>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>ossrh-staging</id>
|
||||
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>ossrh-snapshots</id>
|
||||
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
|
||||
</snapshotRepository>
|
||||
<site>
|
||||
<id>github</id>
|
||||
<url>scm:git:ssh://git@github.com/mojohaus/mojo-parent.git</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<mojo.javadoc.mavenVersion>${project.prerequisites.maven}</mojo.javadoc.mavenVersion>
|
||||
<mojo.java.target>1.5</mojo.java.target>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<!-- NOTE: We deliberately do not set maven.test.redirectTestOutputToFile here to workaround MNG-1992 -->
|
||||
<surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile>
|
||||
<!-- this property makes sure NetBeans 6.8+ picks up some formatting rules from checkstyle -->
|
||||
<netbeans.checkstyle.format>true</netbeans.checkstyle.format>
|
||||
</properties>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>ossrh-snapshots</id>
|
||||
<layout>default</layout>
|
||||
<name>ossrh-snapshots</name>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<checksumPolicy>fail</checksumPolicy>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.11</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||
<artifactId>maven-plugin-annotations</artifactId>
|
||||
<!--must be same version of m-plugin-p -->
|
||||
<version>3.4</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.5.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.13</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>2.6.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.3</version>
|
||||
<configuration>
|
||||
<source>${mojo.java.target}</source>
|
||||
<target>${mojo.java.target}</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.3.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-invoker-plugin</artifactId>
|
||||
<version>1.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-ear-plugin</artifactId>
|
||||
<version>2.10.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.10.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>help-mojo</id>
|
||||
<goals>
|
||||
<goal>helpmojo</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
<configuration>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<arguments>-Pmojo-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-scm-publish-plugin</artifactId>
|
||||
<version>1.1</version>
|
||||
<configuration>
|
||||
<scmBranch>gh-pages</scmBranch>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.18.1</version>
|
||||
<configuration>
|
||||
<redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.18.1</version>
|
||||
</plugin>
|
||||
<!-- Codehaus plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
<version>1.11</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>l10n-maven-plugin</artifactId>
|
||||
<version>1.0-alpha-2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>1.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-maven-plugin</artifactId>
|
||||
<version>1.3.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>mojo-enforcer-rules</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<bannedDependencies>
|
||||
<excludes>
|
||||
<exclude>org.codehaus.plexus:plexus-component-api</exclude>
|
||||
</excludes>
|
||||
<message>The plexus-component-api conflicts with the plexus-container-default used by Maven. You probably added a dependency that is missing the exclusions.</message>
|
||||
</bannedDependencies>
|
||||
<requireNoRepositories>
|
||||
<message>Mojo is synchronized with repo1.maven.org. The rules for repo1.maven.org are that pom.xml files should not include repository definitions. If repository definitions are included, they must be limited to SNAPSHOT only repositories.</message>
|
||||
<banRepositories>true</banRepositories>
|
||||
<banPluginRepositories>true</banPluginRepositories>
|
||||
<allowSnapshotRepositories>true</allowSnapshotRepositories>
|
||||
<allowedPluginRepositories>
|
||||
<allowedPluginRepository>codehaus-snapshots</allowedPluginRepository>
|
||||
<allowedPluginRepository>apache.snapshots</allowedPluginRepository>
|
||||
</allowedPluginRepositories>
|
||||
</requireNoRepositories>
|
||||
<requirePluginVersions>
|
||||
<message>Best Practice is to always define plugin versions!</message>
|
||||
<banLatest>true</banLatest>
|
||||
<banRelease>true</banRelease>
|
||||
</requirePluginVersions>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-plugin-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
<configuration>
|
||||
<requirements>
|
||||
<!--
|
||||
NOTE: Maven 2.x does not interpolate properties of the form project.*|pom.* so the Maven Plugin Plugin
|
||||
gets garbage when manually examining the config of the Maven Compiler Plugin.
|
||||
-->
|
||||
<jdk>${mojo.java.target}</jdk>
|
||||
</requirements>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>cim</report>
|
||||
<report>dependency-info</report>
|
||||
<report>index</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>mailing-list</report>
|
||||
<report>project-team</report>
|
||||
<report>scm</report>
|
||||
<report>summary</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>mojo-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.apache.resources</groupId>
|
||||
<artifactId>apache-source-release-assembly-descriptor</artifactId>
|
||||
<version>1.0.4</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-source-release-distro</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>source-release</descriptorRef>
|
||||
</descriptorRefs>
|
||||
<tarLongFileFormat>gnu</tarLongFileFormat>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<updateReleaseInfo>true</updateReleaseInfo>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<failOnError>false</failOnError>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>reporting</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipReports</name>
|
||||
<value>!true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<!-- Apache plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.13</version>
|
||||
<configuration>
|
||||
<configLocation>config/maven_checks.xml</configLocation>
|
||||
<headerLocation>config/maven-header.txt</headerLocation>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>checkstyle</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.10.1</version>
|
||||
<configuration>
|
||||
<quiet>true</quiet>
|
||||
<links>
|
||||
<link>http://junit.sourceforge.net/javadoc/</link>
|
||||
</links>
|
||||
<tagletArtifacts>
|
||||
<tagletArtifact>
|
||||
<groupId>org.apache.maven.plugin-tools</groupId>
|
||||
<artifactId>maven-plugin-tools-javadoc</artifactId>
|
||||
<version>3.3</version>
|
||||
</tagletArtifact>
|
||||
<tagletArtifact>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-javadoc</artifactId>
|
||||
<version>1.5.5</version>
|
||||
</tagletArtifact>
|
||||
</tagletArtifacts>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>javadoc</report>
|
||||
<report>test-javadoc</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.4</version>
|
||||
<configuration>
|
||||
<targetJdk>${mojo.java.target}</targetJdk>
|
||||
<excludeRoots>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/antlr</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/javacc</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/modello</excludeRoot>
|
||||
<excludeRoot>${project.build.directory}/generated-sources/plugin</excludeRoot>
|
||||
</excludeRoots>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>cim</report>
|
||||
<report>dependencies</report>
|
||||
<report>dependency-convergence</report>
|
||||
<report>dependency-info</report>
|
||||
<report>dependency-management</report>
|
||||
<report>index</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>license</report>
|
||||
<report>mailing-list</report>
|
||||
<report>plugin-management</report>
|
||||
<report>project-team</report>
|
||||
<report>scm</report>
|
||||
<report>summary</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.18.1</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>report</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<!-- Codehaus plugins in alphabetical order -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
<configuration>
|
||||
<instrumentation>
|
||||
<excludes>
|
||||
<exclude>**/HelpMojo.class</exclude>
|
||||
</excludes>
|
||||
</instrumentation>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>maven-3</id>
|
||||
<activation>
|
||||
<file>
|
||||
<!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
|
||||
<exists>${basedir}</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<!-- if releasing current pom with maven 3 site descriptor must be attached -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<inherited>false</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-descriptor</id>
|
||||
<goals>
|
||||
<goal>attach-descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
d4a37b8e88f695a8f8a8e904de7bc80af24958fb
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:46:43 CEST 2023
|
||||
maven-metadata-central.xml.lastUpdated=1692719203244
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:06 CEST 2023
|
||||
plexus-archiver-2.1.pom>central=
|
||||
@@ -0,0 +1,95 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.sonatype.spice</groupId>
|
||||
<artifactId>spice-parent</artifactId>
|
||||
<version>17</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-archiver</artifactId>
|
||||
<version>2.1</version>
|
||||
|
||||
<name>Plexus Archiver Component</name>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-archiver.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-archiver.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-archiver</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP/component/12540</url>
|
||||
</issueManagement>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>plexus-releases</id>
|
||||
<name>Plexus Release Repository</name>
|
||||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>plexus-snapshots</id>
|
||||
<name>Plexus Snapshot Repository</name>
|
||||
<url>${plexusDistMgmtSnapshotsUrl}</url>
|
||||
</snapshotRepository>
|
||||
<site>
|
||||
<id>codehaus.org</id>
|
||||
<url>dav:https://dav.codehaus.org/plexus</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<properties>
|
||||
<useJvmChmod>false</useJvmChmod>
|
||||
</properties>
|
||||
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Dan Tran</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard van der Hoff</name>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-io</artifactId>
|
||||
<version>2.0.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<systemPropertyVariables>
|
||||
<useJvmChmod>${useJvmChmod}</useJvmChmod>
|
||||
</systemPropertyVariables>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.2.1</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
8e63c83bf055cf0357669ca934f64c6bf27fc640
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:12:45 CEST 2023
|
||||
plexus-archiver-2.2.pom>central=
|
||||
plexus-archiver-2.2.jar>central=
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
13e55f4c2b7cdbf59a9bbd668d3c058d1a40664b
|
||||
@@ -0,0 +1,105 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.1.20</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-archiver</artifactId>
|
||||
<version>2.2</version>
|
||||
|
||||
<name>Plexus Archiver Component</name>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-archiver.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-archiver.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-archiver</url>
|
||||
<tag>plexus-archiver-2.2</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP/component/12540</url>
|
||||
</issueManagement>
|
||||
|
||||
<properties>
|
||||
<useJvmChmod>true</useJvmChmod>
|
||||
</properties>
|
||||
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Dan Tran</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard van der Hoff</name>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0.7</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-io</artifactId>
|
||||
<version>2.0.4</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.12.2</version>
|
||||
<configuration>
|
||||
<systemPropertyVariables>
|
||||
<useJvmChmod>${useJvmChmod}</useJvmChmod>
|
||||
</systemPropertyVariables>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.3.2</version>
|
||||
<configuration>
|
||||
<!-- olamy: exclude files with strange names as failed here on osx -->
|
||||
<checkModificationExcludes>
|
||||
<checkModificationExclude>**/src/test/resources/utf8/**</checkModificationExclude>
|
||||
</checkModificationExcludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.1.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>1.7.0</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
ddba2194f5a563bd3bdffa18bce754071f8600a7
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:07 CEST 2023
|
||||
plexus-archiver-2.6.3.jar>central=
|
||||
plexus-archiver-2.6.3.pom>central=
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
515429267c93e192cad9449317be8074db2f5b23
|
||||
@@ -0,0 +1,118 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.3</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-archiver</artifactId>
|
||||
<version>2.6.3</version>
|
||||
|
||||
<name>Plexus Archiver Component</name>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-archiver.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-archiver.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-archiver</url>
|
||||
<tag>plexus-archiver-2.6.3</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP/component/12540</url>
|
||||
</issueManagement>
|
||||
|
||||
<properties>
|
||||
<useJvmChmod>true</useJvmChmod>
|
||||
</properties>
|
||||
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Dan Tran</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard van der Hoff</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Tomasz 'Trog' Welman</name>
|
||||
<email>trog@swmud.pl</email>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0.18</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-io</artifactId>
|
||||
<version>2.1.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-compress</artifactId>
|
||||
<version>1.8.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.11</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<systemPropertyVariables>
|
||||
<useJvmChmod>${useJvmChmod}</useJvmChmod>
|
||||
</systemPropertyVariables>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.1</version>
|
||||
<configuration>
|
||||
<!-- olamy: exclude files with strange names as failed here on osx -->
|
||||
<checkModificationExcludes>
|
||||
<checkModificationExclude>**/src/test/resources/utf8/**</checkModificationExclude>
|
||||
</checkModificationExcludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.1.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>1.7.0</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
b5a3e99a1beabc77857165131db7bc23fff96879
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:12:18 CEST 2023
|
||||
plexus-archiver-2.8.1.pom>central=
|
||||
@@ -0,0 +1,137 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.3</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-archiver</artifactId>
|
||||
<version>2.8.1</version>
|
||||
|
||||
<name>Plexus Archiver Component</name>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-archiver.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-archiver.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-archiver</url>
|
||||
<tag>plexus-archiver-2.8.1</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP/component/12540</url>
|
||||
</issueManagement>
|
||||
|
||||
<properties>
|
||||
<useJvmChmod>true</useJvmChmod>
|
||||
</properties>
|
||||
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Dan Tran</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard van der Hoff</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Tomasz 'Trog' Welman</name>
|
||||
<email>trog@swmud.pl</email>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0.20</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-io</artifactId>
|
||||
<version>2.3.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-compress</artifactId>
|
||||
<version>1.9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.11</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
<version>3.0.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<systemPropertyVariables>
|
||||
<useJvmChmod>${useJvmChmod}</useJvmChmod>
|
||||
</systemPropertyVariables>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.1</version>
|
||||
<configuration>
|
||||
<!-- olamy: exclude files with strange names as failed here on osx -->
|
||||
<checkModificationExcludes>
|
||||
<checkModificationExclude>**/src/test/resources/utf8/**</checkModificationExclude>
|
||||
</checkModificationExcludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<version>1.6</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.3.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>1.7.0</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
fabb4c6b362103ff4bcd7f2b9ece4baec9cfd60a
|
||||
@@ -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:19 CEST 2023
|
||||
plexus-archiver-2.9.jar>central=
|
||||
plexus-archiver-2.9.pom>central=
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
7e719f63ea4746273e21c27945b4b3a06620078e
|
||||
@@ -0,0 +1,147 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.3</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-archiver</artifactId>
|
||||
<version>2.9</version>
|
||||
|
||||
<name>Plexus Archiver Component</name>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-archiver.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-archiver.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-archiver</url>
|
||||
<tag>plexus-archiver-2.9</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP/component/12540</url>
|
||||
</issueManagement>
|
||||
|
||||
<properties>
|
||||
<useJvmChmod>true</useJvmChmod>
|
||||
</properties>
|
||||
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Dan Tran</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Richard van der Hoff</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Tomasz 'Trog' Welman</name>
|
||||
<email>trog@swmud.pl</email>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0.20</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-io</artifactId>
|
||||
<version>2.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-compress</artifactId>
|
||||
<version>1.9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.11</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
<version>3.0.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<systemPropertyVariables>
|
||||
<useJvmChmod>${useJvmChmod}</useJvmChmod>
|
||||
</systemPropertyVariables>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.1</version>
|
||||
<configuration>
|
||||
<!-- olamy: exclude files with strange names as failed here on osx -->
|
||||
<checkModificationExcludes>
|
||||
<checkModificationExclude>**/src/test/resources/utf8/**</checkModificationExclude>
|
||||
</checkModificationExcludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<version>1.6</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.3.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>1.7.0</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
f77190df7ddad882179b2eb1933352de862fa8eb
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:54 CEST 2023
|
||||
plexus-classworlds-1.2-alpha-9.pom>central=
|
||||
+94
@@ -0,0 +1,94 @@
|
||||
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~
|
||||
~ Copyright 2001-2006 The Codehaus Foundation.
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<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">
|
||||
<parent>
|
||||
<artifactId>plexus</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>1.0.10</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Plexus Classworlds</name>
|
||||
<version>1.2-alpha-9</version>
|
||||
<description />
|
||||
<inceptionYear>2002</inceptionYear>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<forkMode>once</forkMode>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>org/codehaus/plexus/classworlds/event/*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>debug</id>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>aspectj</groupId>
|
||||
<artifactId>aspectjrt</artifactId>
|
||||
<version>1.5.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>aspectj-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>compile</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<complianceLevel>1.4</complianceLevel>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-1.2-alpha-9</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-1.2-alpha-9</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/plexus/plexus-classworlds/tags/plexus-classworlds-1.2-alpha-9</url>
|
||||
</scm>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
32be3692644bf86d1226e13e2a60b49a9fa49571
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:12:44 CEST 2023
|
||||
plexus-classworlds-2.2.2.pom>central=
|
||||
+106
@@ -0,0 +1,106 @@
|
||||
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~
|
||||
~ Copyright 2001-2006 The Codehaus Foundation.
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<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>
|
||||
<artifactId>plexus</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>2.0.3</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
<version>2.2.2</version>
|
||||
|
||||
<name>Plexus Classworlds</name>
|
||||
<description>A class loader framework</description>
|
||||
<inceptionYear>2002</inceptionYear>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.2</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.2</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.2</url>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.4.2</version>
|
||||
<configuration>
|
||||
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||||
<argLine>-ea:org.codehaus.classworlds:org.codehaus.plexus.classworlds</argLine>
|
||||
<forkMode>once</forkMode>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>org/codehaus/plexus/classworlds/event/*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>generate-test-resources</phase>
|
||||
<goals>
|
||||
<goal>copy</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifactItems>
|
||||
<artifactItem>
|
||||
<groupId>ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.6.5</version>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<version>1.0.3</version>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>xml-apis</groupId>
|
||||
<artifactId>xml-apis</artifactId>
|
||||
<version>1.3.02</version>
|
||||
</artifactItem>
|
||||
</artifactItems>
|
||||
<outputDirectory>${project.build.directory}/test-lib</outputDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
df1dfb0099c8759b378fe0af3b4a564d2c16aa18
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:57 CEST 2023
|
||||
plexus-classworlds-2.2.3.jar>central=
|
||||
plexus-classworlds-2.2.3.pom>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
93b34d7a40ed56fe33274480c5792b656d3697a9
|
||||
+106
@@ -0,0 +1,106 @@
|
||||
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~
|
||||
~ Copyright 2001-2006 The Codehaus Foundation.
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<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>
|
||||
<artifactId>plexus</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>2.0.6</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
<version>2.2.3</version>
|
||||
|
||||
<name>Plexus Classworlds</name>
|
||||
<description>A class loader framework</description>
|
||||
<inceptionYear>2002</inceptionYear>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.3</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.3</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.3</url>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.4.2</version>
|
||||
<configuration>
|
||||
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||||
<argLine>-ea:org.codehaus.classworlds:org.codehaus.plexus.classworlds</argLine>
|
||||
<forkMode>once</forkMode>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>org/codehaus/plexus/classworlds/event/*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>generate-test-resources</phase>
|
||||
<goals>
|
||||
<goal>copy</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifactItems>
|
||||
<artifactItem>
|
||||
<groupId>ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.6.5</version>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<version>1.0.3</version>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>xml-apis</groupId>
|
||||
<artifactId>xml-apis</artifactId>
|
||||
<version>1.3.02</version>
|
||||
</artifactItem>
|
||||
</artifactItems>
|
||||
<outputDirectory>${project.build.directory}/test-lib</outputDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
068f7ac6a425f5e82bbbb5faef91e4b5d3d84f76
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:51 CEST 2023
|
||||
plexus-classworlds-2.5.1.pom>central=
|
||||
+142
@@ -0,0 +1,142 @@
|
||||
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~
|
||||
~ Copyright 2001-2006 The Codehaus Foundation.
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<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.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>3.3.1</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
<version>2.5.1</version>
|
||||
<packaging>bundle</packaging>
|
||||
|
||||
<name>Plexus Classworlds</name>
|
||||
<description>A class loader framework</description>
|
||||
<inceptionYear>2002</inceptionYear>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-classworlds.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-classworlds.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-classworlds</url>
|
||||
<tag>plexus-classworlds-2.5.1</tag>
|
||||
</scm>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<_nouses>true</_nouses>
|
||||
<Export-Package>org.codehaus.classworlds.*;org.codehaus.plexus.classworlds.*</Export-Package>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifest>
|
||||
<mainClass>org.codehaus.plexus.classworlds.launcher.Launcher</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||||
<argLine>-ea:org.codehaus.classworlds:org.codehaus.plexus.classworlds</argLine>
|
||||
<forkMode>once</forkMode>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.5</source>
|
||||
<target>1.5</target>
|
||||
<excludes>
|
||||
<exclude>org/codehaus/plexus/classworlds/event/*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>generate-test-resources</phase>
|
||||
<goals>
|
||||
<goal>copy</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifactItems>
|
||||
<artifactItem>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.9.0</version>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<version>1.0.3</version>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>xml-apis</groupId>
|
||||
<artifactId>xml-apis</artifactId>
|
||||
<version>1.3.02</version>
|
||||
</artifactItem>
|
||||
</artifactItems>
|
||||
<outputDirectory>${project.build.directory}/test-lib</outputDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.3.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>1.7.0</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
63692250d77f087aa9818ada1c93ec5c69c73794
|
||||
@@ -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:52 CEST 2023
|
||||
plexus-classworlds-2.5.2.jar>central=
|
||||
plexus-classworlds-2.5.2.pom>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
4abb111bfdace5b8167db4c0ef74644f3f88f142
|
||||
+216
@@ -0,0 +1,216 @@
|
||||
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~
|
||||
~ Copyright 2001-2006 The Codehaus Foundation.
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<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.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>3.3.1</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
<version>2.5.2</version>
|
||||
<packaging>bundle</packaging>
|
||||
|
||||
<name>Plexus Classworlds</name>
|
||||
<description>A class loader framework</description>
|
||||
<inceptionYear>2002</inceptionYear>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-classworlds.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-classworlds.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-classworlds</url>
|
||||
<tag>plexus-classworlds-2.5.2</tag>
|
||||
</scm>
|
||||
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>adm-site</id>
|
||||
<url>scm:git:git@github.com:sonatype/plexus-classworlds.git</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-scm-publish-plugin</artifactId>
|
||||
<version>1.0</version>
|
||||
<configuration>
|
||||
<scmBranch>gh-pages</scmBranch>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.3</version>
|
||||
<configuration>
|
||||
<scmBranch>gh-pages</scmBranch>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
<configuration>
|
||||
<localCheckout>true</localCheckout>
|
||||
<pushChanges>false</pushChanges>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<goals>deploy</goals>
|
||||
<arguments>-Pplexus-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<_nouses>true</_nouses>
|
||||
<Export-Package>org.codehaus.classworlds.*;org.codehaus.plexus.classworlds.*</Export-Package>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifest>
|
||||
<mainClass>org.codehaus.plexus.classworlds.launcher.Launcher</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||||
<argLine>-ea:org.codehaus.classworlds:org.codehaus.plexus.classworlds</argLine>
|
||||
<forkMode>once</forkMode>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.6</source>
|
||||
<target>1.6</target>
|
||||
<excludes>
|
||||
<exclude>org/codehaus/plexus/classworlds/event/*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>generate-test-resources</phase>
|
||||
<goals>
|
||||
<goal>copy</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifactItems>
|
||||
<artifactItem>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.9.0</version>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<version>1.0.3</version>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>xml-apis</groupId>
|
||||
<artifactId>xml-apis</artifactId>
|
||||
<version>1.3.02</version>
|
||||
</artifactItem>
|
||||
</artifactItems>
|
||||
<outputDirectory>${project.build.directory}/test-lib</outputDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.3.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>1.7.0</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
<configuration>
|
||||
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>summary</report>
|
||||
<report>index</report>
|
||||
<report>dependencies</report>
|
||||
<report>issue-tracking</report>
|
||||
<report>scm</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.9.1</version>
|
||||
<configuration>
|
||||
<encoding>utf-8</encoding>
|
||||
<attach>true</attach>
|
||||
<quiet>true</quiet>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
a39bedbc3fa3652d3606821d7c21d80e900f57a0
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:57 CEST 2023
|
||||
plexus-compiler-api-2.7.pom>central=
|
||||
plexus-compiler-api-2.7.jar>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
a7a16bbf293041c6a968deff8fa82bb90cf8daed
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-compiler</artifactId>
|
||||
<version>2.7</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-compiler-api</artifactId>
|
||||
|
||||
<name>Plexus Compiler Api</name>
|
||||
<description>Plexus Compilers component's API to manipulate compilers.</description>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
06a7595f0b5554ffb651789adc922abec13eb1c3
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:57 CEST 2023
|
||||
plexus-compiler-javac-2.7.pom>central=
|
||||
plexus-compiler-javac-2.7.jar>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
3901f05249e77b2e489acc4eff03805dbcbac55f
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-compilers</artifactId>
|
||||
<version>2.7</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-compiler-javac</artifactId>
|
||||
|
||||
<name>Plexus Javac Component</name>
|
||||
<description>Javac Compiler support for Plexus Compiler component.</description>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
5e21d0ebadc6edcc29909c0be0a56e4b9ea7b54d
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:57 CEST 2023
|
||||
plexus-compiler-manager-2.7.pom>central=
|
||||
plexus-compiler-manager-2.7.jar>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
384d8198269d1cc3a1dd27d087fcd7ef1da407e5
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-compiler</artifactId>
|
||||
<version>2.7</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-compiler-manager</artifactId>
|
||||
|
||||
<name>Plexus Compiler Manager</name>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-compiler-api</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
02b18e02459c40b30f05909bf9dad07bdd113e81
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:56 CEST 2023
|
||||
plexus-compiler-2.7.pom>central=
|
||||
@@ -0,0 +1,159 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>4.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-compiler</artifactId>
|
||||
<version>2.7</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Compiler</name>
|
||||
<description>Plexus Compiler is a Plexus component to use different compilers through a uniform API.</description>
|
||||
|
||||
<modules>
|
||||
<module>plexus-compiler-api</module>
|
||||
<module>plexus-compiler-manager</module>
|
||||
<module>plexus-compilers</module>
|
||||
<module>plexus-compiler-test</module>
|
||||
</modules>
|
||||
|
||||
<scm>
|
||||
<connection>${scm.url}</connection>
|
||||
<developerConnection>${scm.url}</developerConnection>
|
||||
<url>http://github.com/codehaus-plexus/plexus-compiler/tree/${project.scm.tag}/</url>
|
||||
<tag>plexus-compiler-2.7</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>github</system>
|
||||
<url>https://github.com/codehaus-plexus/plexus-compiler/issues</url>
|
||||
</issueManagement>
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>github:gh-pages</id>
|
||||
<url>${scm.url}</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<properties>
|
||||
<scm.url>scm:git:git@github.com:codehaus-plexus/plexus-compiler.git</scm.url>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-compiler-api</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-compiler-test</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
<version>4.12</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<configuration>
|
||||
<releaseProfiles>plexus-release,tools.jar</releaseProfiles>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<additionalparam>-Xdoclint:none</additionalparam>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<configuration>
|
||||
<topSiteURL>${scm.url}</topSiteURL>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
<goal>merge-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<!--
|
||||
Make sure maven.repo.local is passed through to the tests if set or the tests will fail to resolve artifacts
|
||||
(c.f. SUREFIRE-491).
|
||||
-->
|
||||
<id>maven.repo.local</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>maven.repo.local</name>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<systemProperties combine.children="append">
|
||||
<property>
|
||||
<name>maven.repo.local</name>
|
||||
<value>${maven.repo.local}</value>
|
||||
</property>
|
||||
</systemProperties>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
4e47f0c17de249722036b5cbd83891e6b7a19b81
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:56 CEST 2023
|
||||
plexus-compilers-2.7.pom>central=
|
||||
@@ -0,0 +1,43 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-compiler</artifactId>
|
||||
<version>2.7</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-compilers</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Compilers</name>
|
||||
|
||||
<modules>
|
||||
<module>plexus-compiler-aspectj</module>
|
||||
<module>plexus-compiler-csharp</module>
|
||||
<module>plexus-compiler-eclipse</module>
|
||||
<module>plexus-compiler-jikes</module>
|
||||
<module>plexus-compiler-javac</module>
|
||||
<module>plexus-compiler-javac-errorprone</module>
|
||||
<module>plexus-compiler-j2objc</module>
|
||||
</modules>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-compiler-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-compiler-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
9635c81e62dafd249e1274e949a73b25ceb45623
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:57 CEST 2023
|
||||
plexus-component-annotations-1.5.5.pom>central=
|
||||
plexus-component-annotations-1.5.5.jar>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
c72f2660d0cbed24246ddb55d7fdc4f7374d2078
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!-- $Id: pom.xml 8792 2010-09-30 20:11:06Z bentmann $ -->
|
||||
<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.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-containers</artifactId>
|
||||
<version>1.5.5</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-component-annotations</artifactId>
|
||||
|
||||
<name>Plexus :: Component Annotations</name>
|
||||
<description>
|
||||
Plexus Component "Java 5" Annotations, to describe plexus components properties in java sources with
|
||||
standard annotations instead of javadoc annotations.
|
||||
</description>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
fd506865d5d083d8cef9fdbf525ad99fcc3416c1
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:54 CEST 2023
|
||||
plexus-components-1.1.14.pom>central=
|
||||
+164
@@ -0,0 +1,164 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<artifactId>plexus</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>2.0.2</version>
|
||||
<relativePath>../pom/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.1.14</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Components Parent Project</name>
|
||||
<url>http://plexus.codehaus.org/plexus-components</url>
|
||||
|
||||
|
||||
<!-- Commenting these so they don't run when I try to release this parent POM.
|
||||
I'll uncomment again once the release is done.
|
||||
<modules>
|
||||
<module>plexus-archiver</module>
|
||||
<module>plexus-cli</module>
|
||||
<module>plexus-compiler</module>
|
||||
<module>plexus-digest</module>
|
||||
<module>plexus-i18n</module>
|
||||
<module>plexus-interactivity</module>
|
||||
<module>plexus-interpolation</module>
|
||||
<module>plexus-io</module>
|
||||
<module>plexus-resources</module>
|
||||
<module>plexus-swizzle</module>
|
||||
<module>plexus-velocity</module>
|
||||
</modules> -->
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.14</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.14</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-components-1.1.14</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP</url>
|
||||
</issueManagement>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.5.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-maven-plugin</artifactId>
|
||||
<version>1.3.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile><!-- TODO: remove when upgrading parent to 2.0.3 -->
|
||||
<id>reporting</id>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
<version>2.4.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.2</version>
|
||||
<configuration>
|
||||
<configLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml</configLocation>
|
||||
<headerLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt</headerLocation>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<configuration>
|
||||
<rulesets>
|
||||
<ruleset>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml</ruleset>
|
||||
</rulesets>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jxr-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<configuration>
|
||||
<inputEncoding>${project.build.sourceEncoding}</inputEncoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
<configuration>
|
||||
<encoding>${project.build.sourceEncoding}</encoding>
|
||||
<links>
|
||||
<link>http://java.sun.com/j2ee/1.4/docs/api</link>
|
||||
<link>http://junit.sourceforge.net/javadoc/</link>
|
||||
</links>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>javadoc</report>
|
||||
<report>test-javadoc</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
aed78d67ee20a5038741c7cc2a8124ae20c960ad
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:06 CEST 2023
|
||||
plexus-components-1.1.17.pom>central=
|
||||
+166
@@ -0,0 +1,166 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<artifactId>plexus</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>2.0.5</version>
|
||||
<relativePath>../pom/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.1.17</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Components</name>
|
||||
<url>http://plexus.codehaus.org/plexus-components</url>
|
||||
|
||||
|
||||
<modules>
|
||||
<module>plexus-archiver</module>
|
||||
<module>plexus-cli</module>
|
||||
<module>plexus-compiler</module>
|
||||
<module>plexus-digest</module>
|
||||
<module>plexus-i18n</module>
|
||||
<module>plexus-interactivity</module>
|
||||
<module>plexus-interpolation</module>
|
||||
<module>plexus-io</module>
|
||||
<module>plexus-resources</module>
|
||||
<!--
|
||||
<module>plexus-swizzle</module>
|
||||
-->
|
||||
<module>plexus-velocity</module>
|
||||
</modules>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.17</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.17</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-components-1.1.17</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP</url>
|
||||
</issueManagement>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.5.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<version>1.5.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>maven-3</id>
|
||||
<activation>
|
||||
<file>
|
||||
<!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
|
||||
<exists>${basedir}</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<inherited>false</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-descriptor</id>
|
||||
<goals>
|
||||
<goal>attach-descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</profile>
|
||||
<profile>
|
||||
<id>m2e</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<m2BuildDirectory>target</m2BuildDirectory>
|
||||
</properties>
|
||||
<build>
|
||||
<directory>${m2BuildDirectory}</directory>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.maven.ide.eclipse</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>0.9.9-SNAPSHOT</version>
|
||||
<configuration>
|
||||
<mappingId>customizable</mappingId>
|
||||
<configurators>
|
||||
<configurator id="org.maven.ide.eclipse.jdt.javaConfigurator" />
|
||||
<configurator id="org.maven.ide.eclipse.plexus.annotations.plexusConfigurator" />
|
||||
<configurator id="org.maven.ide.eclipse.modello.modelloConfigurator" />
|
||||
</configurators>
|
||||
<mojoExecutions>
|
||||
<mojoExecution>org.apache.maven.plugins:maven-resources-plugin::</mojoExecution>
|
||||
</mojoExecutions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!-- see MSHARED-125 -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.5-SNAPSHOT</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
9c09b4388c02db50d9aec045e4f38660928ebb91
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:53 CEST 2023
|
||||
plexus-components-1.1.18.pom>central=
|
||||
+168
@@ -0,0 +1,168 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<artifactId>plexus</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>2.0.7</version>
|
||||
<relativePath>../pom/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.1.18</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Components</name>
|
||||
<url>http://plexus.codehaus.org/plexus-components</url>
|
||||
|
||||
|
||||
<modules>
|
||||
<module>plexus-archiver</module>
|
||||
<module>plexus-cli</module>
|
||||
<module>plexus-compiler</module>
|
||||
<module>plexus-digest</module>
|
||||
<module>plexus-i18n</module>
|
||||
<module>plexus-interactivity</module>
|
||||
<module>plexus-interpolation</module>
|
||||
<module>plexus-io</module>
|
||||
<module>plexus-resources</module>
|
||||
<!--
|
||||
<module>plexus-swizzle</module>
|
||||
-->
|
||||
<module>plexus-velocity</module>
|
||||
</modules>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.18</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.18</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-components-1.1.18</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP</url>
|
||||
</issueManagement>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.5.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<version>1.5.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>parent-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<configuration>
|
||||
<arguments>-N -Pplexus-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>maven-3</id>
|
||||
<activation>
|
||||
<file>
|
||||
<!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
|
||||
<exists>${basedir}</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<inherited>false</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-descriptor</id>
|
||||
<goals>
|
||||
<goal>attach-descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>m2e</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<m2BuildDirectory>target</m2BuildDirectory>
|
||||
</properties>
|
||||
<build>
|
||||
<directory>${m2BuildDirectory}</directory>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.maven.ide.eclipse</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>0.10.0</version>
|
||||
<configuration>
|
||||
<mappingId>customizable</mappingId>
|
||||
<configurators>
|
||||
<configurator id="org.maven.ide.eclipse.jdt.javaConfigurator" />
|
||||
<configurator id="org.maven.ide.eclipse.plexus.annotations.plexusConfigurator" />
|
||||
<configurator id="org.maven.ide.eclipse.modello.modelloConfigurator" />
|
||||
</configurators>
|
||||
<mojoExecutions>
|
||||
<mojoExecution>org.apache.maven.plugins:maven-resources-plugin::</mojoExecution>
|
||||
</mojoExecutions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
41abf89f075e6b912a2ff728aa002e98591de425
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:12:45 CEST 2023
|
||||
plexus-components-1.1.19.pom>central=
|
||||
+96
@@ -0,0 +1,96 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>3.0.1</version>
|
||||
<relativePath>../pom/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.1.19</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Components</name>
|
||||
<url>http://plexus.codehaus.org/plexus-components</url>
|
||||
|
||||
|
||||
<modules>
|
||||
<module>plexus-cli</module>
|
||||
<module>plexus-digest</module>
|
||||
<module>plexus-i18n</module>
|
||||
<module>plexus-interactivity</module>
|
||||
<module>plexus-resources</module>
|
||||
<!--
|
||||
<module>plexus-swizzle</module>
|
||||
-->
|
||||
<module>plexus-velocity</module>
|
||||
</modules>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-components.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-components.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-components</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP</url>
|
||||
</issueManagement>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>parent-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<configuration>
|
||||
<arguments>-N -Pplexus-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
2c0f4d3bcbcdd8f77521502d886681ed5af38a25
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:12:45 CEST 2023
|
||||
plexus-components-1.1.20.pom>central=
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>3.1</version>
|
||||
<relativePath>../pom/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.1.20</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Components</name>
|
||||
<url>http://plexus.codehaus.org/plexus-components</url>
|
||||
|
||||
|
||||
<modules>
|
||||
<module>plexus-cli</module>
|
||||
<module>plexus-digest</module>
|
||||
<module>plexus-i18n</module>
|
||||
<module>plexus-interactivity</module>
|
||||
<module>plexus-resources</module>
|
||||
<!--
|
||||
<module>plexus-swizzle</module>
|
||||
-->
|
||||
<module>plexus-velocity</module>
|
||||
</modules>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-components.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-components.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-components</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP</url>
|
||||
</issueManagement>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>parent-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<configuration>
|
||||
<arguments>-N -Pplexus-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>plexus.snapshots</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/plexus-snapshots</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
38a54848be7b7f006cb86b0d120f289284442582
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:12:45 CEST 2023
|
||||
plexus-components-1.1.4.pom>central=
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
<!--
|
||||
|
||||
!!!
|
||||
|
||||
NOTE: If you change this file, you MUST bump the version up from 1.0. That is the version of the POM, and was
|
||||
used for releases of plexus-compiler and plexus-archiver in the past.
|
||||
|
||||
!!!
|
||||
|
||||
-->
|
||||
|
||||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>plexus</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>1.0.4</version>
|
||||
</parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>1.1.4</version>
|
||||
<name>Plexus Components Parent Project</name>
|
||||
<!--
|
||||
TODO: should this be pushed down to all the dependencies?
|
||||
- a more stable API JAR may be useful, for the interfaces and classes such as AbstractLogEnabled
|
||||
-->
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-8</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<modules>
|
||||
<module>plexus-action</module>
|
||||
<module>plexus-archiver</module>
|
||||
<module>plexus-bayesian</module>
|
||||
<module>plexus-command</module>
|
||||
<module>plexus-compiler</module>
|
||||
<module>plexus-drools</module>
|
||||
<module>plexus-formica-web</module>
|
||||
<module>plexus-formica</module>
|
||||
<module>plexus-hibernate</module>
|
||||
<module>plexus-i18n</module>
|
||||
<module>plexus-interactivity</module>
|
||||
<module>plexus-ircbot</module>
|
||||
<module>plexus-jdo</module>
|
||||
<module>plexus-jetty</module>
|
||||
<module>plexus-jetty-httpd</module>
|
||||
<module>plexus-mail-sender</module>
|
||||
<module>plexus-mimetyper</module>
|
||||
<module>plexus-notification</module>
|
||||
<!--
|
||||
<module>plexus-password-store</module>
|
||||
-->
|
||||
<module>plexus-resource</module>
|
||||
<module>plexus-security</module>
|
||||
<module>plexus-site-renderer</module>
|
||||
<module>plexus-summit</module>
|
||||
<module>plexus-taskqueue</module>
|
||||
<module>plexus-velocity</module>
|
||||
<module>plexus-workflow</module>
|
||||
<module>plexus-xmlrpc</module>
|
||||
</modules>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
f4cdeeba2539739a3473a32d04ec09955c770e9a /home/projects/maven/repository-staging/to-ibiblio/maven2/org/codehaus/plexus/plexus-components/1.1.4/plexus-components-1.1.4.pom
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:12:18 CEST 2023
|
||||
plexus-components-1.2.pom>central=
|
||||
@@ -0,0 +1,111 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>3.2</version>
|
||||
<relativePath>../pom/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.2</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Components</name>
|
||||
<url>http://plexus.codehaus.org/plexus-components</url>
|
||||
|
||||
|
||||
<!--modules>
|
||||
<module>plexus-cli</module>
|
||||
<module>plexus-digest</module>
|
||||
<module>plexus-i18n</module>
|
||||
<module>plexus-interactivity</module>
|
||||
<module>plexus-resources</module>
|
||||
<module>plexus-velocity</module>
|
||||
</modules-->
|
||||
<!--
|
||||
<module>plexus-swizzle</module>
|
||||
-->
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-components.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-components.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-components</url>
|
||||
<tag>plexus-components-1.2</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP</url>
|
||||
</issueManagement>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0.7</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>parent-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<configuration>
|
||||
<arguments>-N -Pplexus-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>plexus.snapshots</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/plexus-snapshots</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
d0371336a8a00aa8ab99b332ac8eaf1665a9a3e5
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:12:18 CEST 2023
|
||||
plexus-components-1.3.1.pom>central=
|
||||
+111
@@ -0,0 +1,111 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>3.3.1</version>
|
||||
<relativePath>../pom/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.3.1</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Components</name>
|
||||
<url>http://plexus.codehaus.org/plexus-components</url>
|
||||
|
||||
|
||||
<!--modules>
|
||||
<module>plexus-cli</module>
|
||||
<module>plexus-digest</module>
|
||||
<module>plexus-i18n</module>
|
||||
<module>plexus-interactivity</module>
|
||||
<module>plexus-resources</module>
|
||||
<module>plexus-velocity</module>
|
||||
</modules-->
|
||||
<!--
|
||||
<module>plexus-swizzle</module>
|
||||
-->
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-components.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-components.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-components</url>
|
||||
<tag>plexus-components-1.3.1</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP</url>
|
||||
</issueManagement>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0.8</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>parent-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<configuration>
|
||||
<arguments>-N -Pplexus-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>plexus.snapshots</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/plexus-snapshots</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
4daaf2af8e09587eb3837b80252473d6f423c0f7
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:12:18 CEST 2023
|
||||
plexus-components-1.3.pom>central=
|
||||
@@ -0,0 +1,111 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>3.3</version>
|
||||
<relativePath>../pom/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>1.3</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Components</name>
|
||||
<url>http://plexus.codehaus.org/plexus-components</url>
|
||||
|
||||
|
||||
<!--modules>
|
||||
<module>plexus-cli</module>
|
||||
<module>plexus-digest</module>
|
||||
<module>plexus-i18n</module>
|
||||
<module>plexus-interactivity</module>
|
||||
<module>plexus-resources</module>
|
||||
<module>plexus-velocity</module>
|
||||
</modules-->
|
||||
<!--
|
||||
<module>plexus-swizzle</module>
|
||||
-->
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-components.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-components.git</developerConnection>
|
||||
<url>http://github.com/sonatype/plexus-components</url>
|
||||
<tag>plexus-components-1.3</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://jira.codehaus.org/browse/PLXCOMP</url>
|
||||
</issueManagement>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0.8</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>parent-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<configuration>
|
||||
<arguments>-N -Pplexus-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>plexus.snapshots</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/plexus-snapshots</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
979daf6b32bf4eb1fc8ff51689bf31731651a0c8
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:56 CEST 2023
|
||||
plexus-components-4.0.pom>central=
|
||||
@@ -0,0 +1,84 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>4.0</version>
|
||||
<relativePath>../pom/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<version>4.0</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Components</name>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:codehaus-plexus/plexus-components.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:codehaus-plexus/plexus-components.git</developerConnection>
|
||||
<url>http://github.com/codehaus-plexus/plexus-components</url>
|
||||
<tag>plexus-components-4.0</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>github</system>
|
||||
<url>http://github.com/codehaus-plexus/plexus-components/issues</url>
|
||||
</issueManagement>
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>github:gh-pages</id>
|
||||
<url>scm:git:git@github.com:codehaus-plexus</url><!-- url used only for inheritance -->
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>3.0.22</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>plexus.snapshots</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/plexus-snapshots</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
dcad998d9c45ca35212ac7efc49b729efce20395
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:54 CEST 2023
|
||||
plexus-container-default-1.0-alpha-30.pom>central=
|
||||
+93
@@ -0,0 +1,93 @@
|
||||
<?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">
|
||||
<parent>
|
||||
<artifactId>plexus-containers</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>1.0-alpha-30</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<name>Default Plexus Container</name>
|
||||
<version>1.0-alpha-30</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<forkMode>once</forkMode>
|
||||
<excludes>
|
||||
<exclude>**/Test*.java</exclude>
|
||||
<exclude>**/Abstract*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>shade-maven-plugin</artifactId>
|
||||
<version>1.0-alpha-9</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifactSet>
|
||||
<excludes>
|
||||
<exclude>classworlds:classworlds</exclude>
|
||||
<exclude>junit:junit</exclude>
|
||||
<exclude>jmock:jmock</exclude>
|
||||
<exclude>org.codehaus.plexus:plexus-classworlds</exclude>
|
||||
<exclude>org.codehaus.plexus:plexus-utils</exclude>
|
||||
</excludes>
|
||||
</artifactSet>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jmock</groupId>
|
||||
<artifactId>jmock</artifactId>
|
||||
<version>1.0.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<links>
|
||||
<link>http://java.sun.com/j2ee/1.4/docs/api</link>
|
||||
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
|
||||
<link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link>
|
||||
<link>http://jakarta.apache.org/commons/dbcp/apidocs/</link>
|
||||
<link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
|
||||
<link>http://jakarta.apache.org/commons/httpclient/apidocs/</link>
|
||||
<link>http://jakarta.apache.org/commons/logging/apidocs/</link>
|
||||
<link>http://jakarta.apache.org/commons/pool/apidocs/</link>
|
||||
<link>http://www.junit.org/junit/javadoc/</link>
|
||||
<link>http://logging.apache.org/log4j/docs/api/</link>
|
||||
<link>http://jakarta.apache.org/regexp/apidocs/</link>
|
||||
<link>http://jakarta.apache.org/velocity/api/</link>
|
||||
</links>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
</project>
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
aa1efeb7ed05a3c5037cc194b9e8fbf97e52268a
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:12:45 CEST 2023
|
||||
plexus-container-default-1.0-alpha-8.pom>central=
|
||||
+248
@@ -0,0 +1,248 @@
|
||||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<name>Default Plexus Container</name>
|
||||
<version>1.0-alpha-8</version>
|
||||
<ciManagement>
|
||||
<notifiers>
|
||||
<notifier>
|
||||
<configuration>
|
||||
<address>dev@plexus.codehaus.org</address>
|
||||
</configuration>
|
||||
</notifier>
|
||||
<notifier>
|
||||
<type>irc</type>
|
||||
<configuration>
|
||||
<port>6667</port>
|
||||
<channel>#plexus</channel>
|
||||
<host>irc.codehaus.org</host>
|
||||
</configuration>
|
||||
</notifier>
|
||||
</notifiers>
|
||||
</ciManagement>
|
||||
<inceptionYear>2001</inceptionYear>
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Plexus Developer List</name>
|
||||
<subscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</subscribe>
|
||||
<unsubscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</unsubscribe>
|
||||
<archive>http://lists.codehaus.org/pipermail/plexus-dev/</archive>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>jvanzyl</id>
|
||||
<name>Jason van Zyl</name>
|
||||
<email>jason@zenplex.com</email>
|
||||
<organization>Zenplex</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Release Manager</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>kaz</id>
|
||||
<name>Pete Kazmier</name>
|
||||
<email></email>
|
||||
<organization></organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jtaylor</id>
|
||||
<name>James Taylor</name>
|
||||
<email>james@jamestaylor.org</email>
|
||||
<organization></organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>dandiep</id>
|
||||
<name>Dan Diephouse</name>
|
||||
<email>dan@envoisolutions.com</email>
|
||||
<organization>Envoi solutions</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>kasper</id>
|
||||
<name>Kasper Nielsen</name>
|
||||
<email>apache@kav.dk</email>
|
||||
<organization></organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>bwalding</id>
|
||||
<name>Ben Walding</name>
|
||||
<email>bwalding@codehaus.org</email>
|
||||
<organization>Walding Consulting Services</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>mhw</id>
|
||||
<name>Mark Wilkinson</name>
|
||||
<email>mhw@kremvax.net</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>michal</id>
|
||||
<name>Michal Maczka</name>
|
||||
<email>mmaczka@interia.pl</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>evenisse</id>
|
||||
<name>Emmanuel Venisse</name>
|
||||
<email>evenisse@codehaus.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>trygvis</id>
|
||||
<name>Trygve Laugstol</name>
|
||||
<email>trygvis@codehaus.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>kenney</id>
|
||||
<name>Kenney Westerhof</name>
|
||||
<email>kenney@codehaus.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
</developers>
|
||||
<scm>
|
||||
<connection>scm:svn:svn://svn.codehaus.org/plexus/scm/trunk/plexus-containers/plexus-container-default</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/trunk/plexus-containers/plexus-container-default</developerConnection>
|
||||
</scm>
|
||||
<organization>
|
||||
<name>Codehaus</name>
|
||||
<url>http://www.codehaus.org/</url>
|
||||
</organization>
|
||||
<build>
|
||||
<sourceDirectory>src/main/java</sourceDirectory>
|
||||
<scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
|
||||
<testSourceDirectory>src/test/java</testSourceDirectory>
|
||||
<outputDirectory>target/classes</outputDirectory>
|
||||
<testOutputDirectory>target/test-classes</testOutputDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
</resource>
|
||||
</resources>
|
||||
<testResources>
|
||||
<testResource>
|
||||
<directory>src/test/resources</directory>
|
||||
</testResource>
|
||||
</testResources>
|
||||
<directory>target</directory>
|
||||
<finalName>plexus-container-default-1.0-alpha-8</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.0-beta-2</version>
|
||||
<configuration>
|
||||
<tagBase>https://svn.codehaus.org/plexus/tags</tagBase>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.0-beta-1</version>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/Test*.java</exclude>
|
||||
<exclude>**/Abstract*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<repositories>
|
||||
<repository>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<id>snapshots</id>
|
||||
<name>Maven Snapshot Development Repository</name>
|
||||
<url>http://snapshots.maven.codehaus.org/maven2</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>central</id>
|
||||
<name>Maven Repository Switchboard</name>
|
||||
<url>http://repo1.maven.org/maven2</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<id>snapshots-plugins</id>
|
||||
<name>Maven Snapshot Plugins Development Repository</name>
|
||||
<url>http://snapshots.maven.codehaus.org/maven2</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>central</id>
|
||||
<name>Maven Plugin Repository</name>
|
||||
<url>http://repo1.maven.org/maven2</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.0.4</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>classworlds</groupId>
|
||||
<artifactId>classworlds</artifactId>
|
||||
<version>1.1-alpha-2</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<reporting>
|
||||
<outputDirectory>target/site</outputDirectory>
|
||||
</reporting>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>repo1</id>
|
||||
<name>Maven Central Repository</name>
|
||||
<url>scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>snapshots</id>
|
||||
<name>Maven Central Development Repository</name>
|
||||
<url>scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2</url>
|
||||
</snapshotRepository>
|
||||
<status>deployed</status>
|
||||
</distributionManagement>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
3324c2065311b5cd636d3fe37353fe7558a6ec22 /home/projects/maven/repository-staging/to-ibiblio/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:16:16 CEST 2023
|
||||
plexus-container-default-1.0-alpha-9-stable-1-sources.jar>central=
|
||||
plexus-container-default-1.0-alpha-9-stable-1.pom>central=
|
||||
plexus-container-default-1.0-alpha-9-stable-1.jar>central=
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
#Tue Aug 22 11:16:16 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692695776211
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692695776211
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692695776211
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692695776211
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692695776200
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692695776211
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|sources=1692695776209
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692695776211
|
||||
BIN
Binary file not shown.
+13
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:16:16 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692695675474
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692695776200
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692695575315
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692695776108
|
||||
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.codehaus.plexus\:plexus-container-default\:jar\:sources\:1.0-alpha-9-stable-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.codehaus.plexus\:plexus-container-default\:jar\:sources\:1.0-alpha-9-stable-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=1692695575395
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692695565219
|
||||
+1
@@ -0,0 +1 @@
|
||||
e9b8cdfbdca8f10c3d86f8c9ef16ab231bc379a7
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:12:37 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692695457510
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692695557751
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692695357271
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692695557641
|
||||
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.codehaus.plexus\:plexus-container-default\:jar\:1.0-alpha-9-stable-1 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.codehaus.plexus\:plexus-container-default\:jar\:1.0-alpha-9-stable-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=1692695357362
|
||||
+1
@@ -0,0 +1 @@
|
||||
94aea3010e250a334d9dab7f591114cd6c767458
|
||||
+65
@@ -0,0 +1,65 @@
|
||||
<project>
|
||||
<parent>
|
||||
<artifactId>plexus-containers</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>1.0.3</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<name>Default Plexus Container</name>
|
||||
<version>1.0-alpha-9-stable-1</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/Test*.java</exclude>
|
||||
<exclude>**/Abstract*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.0.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>classworlds</groupId>
|
||||
<artifactId>classworlds</artifactId>
|
||||
<version>1.1-alpha-2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>codehaus.org</id>
|
||||
<name>Plexus Central Repository</name>
|
||||
<url>dav:https://dav.codehaus.org/repository/plexus</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>codehaus.org</id>
|
||||
<name>Plexus Central Development Repository</name>
|
||||
<url>dav:https://dav.codehaus.org/snapshots.repository/plexus</url>
|
||||
</snapshotRepository>
|
||||
<site>
|
||||
<id>codehaus.org</id>
|
||||
<url>dav:https://dav.codehaus.org/plexus</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
f557cb47f4594ac941d0edf08093a03ce15b51ba
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:12:44 CEST 2023
|
||||
plexus-container-default-1.0-alpha-9.pom>central=
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
<project>
|
||||
<parent>
|
||||
<artifactId>plexus-containers</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>1.0.3</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<name>Default Plexus Container</name>
|
||||
<version>1.0-alpha-9</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/Test*.java</exclude>
|
||||
<exclude>**/Abstract*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.0.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>classworlds</groupId>
|
||||
<artifactId>classworlds</artifactId>
|
||||
<version>1.1-alpha-2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<distributionManagement>
|
||||
<status>deployed</status>
|
||||
</distributionManagement>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
d00c65ec36fb3cc8c755182a7ee52d3d80340179
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:12:44 CEST 2023
|
||||
plexus-container-default-1.5.5.pom>central=
|
||||
+88
@@ -0,0 +1,88 @@
|
||||
<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.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-containers</artifactId>
|
||||
<version>1.5.5</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
|
||||
<name>Plexus :: Default Container</name>
|
||||
<description>
|
||||
The Plexus IoC container API and its default implementation.
|
||||
</description>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xbean</groupId>
|
||||
<artifactId>xbean-reflect</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.collections</groupId>
|
||||
<artifactId>google-collections</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<forkMode>once</forkMode>
|
||||
<excludes>
|
||||
<exclude>**/Test*.java</exclude>
|
||||
<exclude>**/Abstract*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.modello</groupId>
|
||||
<artifactId>modello-maven-plugin</artifactId>
|
||||
<version>1.1</version>
|
||||
<configuration>
|
||||
<models>
|
||||
<model>src/main/mdo/components.mdo</model>
|
||||
<model>src/main/mdo/plexus.mdo</model>
|
||||
</models>
|
||||
<version>1.3.0</version>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>xsd-site</id>
|
||||
<phase>pre-site</phase>
|
||||
<goals>
|
||||
<goal>xsd</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<outputDirectory>${basedir}/target/generated-site/resources/xsd</outputDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>descriptor-site</id>
|
||||
<phase>pre-site</phase>
|
||||
<goals>
|
||||
<goal>xdoc</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<firstVersion>1.0.0</firstVersion>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
f68a6d3761cfdfdf1e13ce2c18327c514acad611
|
||||
@@ -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:52 CEST 2023
|
||||
plexus-container-default-1.6.jar>central=
|
||||
plexus-container-default-1.6.pom>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
e3e8dd9ad86a7473221dd306c9a13daef0a87168
|
||||
+88
@@ -0,0 +1,88 @@
|
||||
<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.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-containers</artifactId>
|
||||
<version>1.6</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
|
||||
<name>Plexus :: Default Container</name>
|
||||
<description>
|
||||
The Plexus IoC container API and its default implementation.
|
||||
</description>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xbean</groupId>
|
||||
<artifactId>xbean-reflect</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.collections</groupId>
|
||||
<artifactId>google-collections</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<forkMode>once</forkMode>
|
||||
<excludes>
|
||||
<exclude>**/Test*.java</exclude>
|
||||
<exclude>**/Abstract*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.modello</groupId>
|
||||
<artifactId>modello-maven-plugin</artifactId>
|
||||
<version>1.1</version>
|
||||
<configuration>
|
||||
<models>
|
||||
<model>src/main/mdo/components.mdo</model>
|
||||
<model>src/main/mdo/plexus.mdo</model>
|
||||
</models>
|
||||
<version>1.3.0</version>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>xsd-site</id>
|
||||
<phase>pre-site</phase>
|
||||
<goals>
|
||||
<goal>xsd</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<outputDirectory>${basedir}/target/generated-site/resources/xsd</outputDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>descriptor-site</id>
|
||||
<phase>pre-site</phase>
|
||||
<goals>
|
||||
<goal>xdoc</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<firstVersion>1.0.0</firstVersion>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
38dc61f2a211bf992382b5f685ec734ff2cfdb3c
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:54 CEST 2023
|
||||
plexus-containers-1.0-alpha-30.pom>central=
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
<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.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>1.0.11</version>
|
||||
</parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-containers</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Parent Plexus Container POM</name>
|
||||
<version>1.0-alpha-30</version>
|
||||
<modules>
|
||||
<module>plexus-component-api</module>
|
||||
<module>plexus-container-default</module>
|
||||
</modules>
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-30</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-30</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-30</url>
|
||||
</scm>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
<version>1.2-alpha-9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.4.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-api</artifactId>
|
||||
<version>1.0-alpha-30</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
8b6330c46076c52825feb050aa27c550b24b4a17
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:54 CEST 2023
|
||||
plexus-containers-1.0.3.pom>central=
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>1.0.4</version>
|
||||
</parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-containers</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Parent Plexus Container POM</name>
|
||||
<version>1.0.3</version>
|
||||
<modules>
|
||||
<module>plexus-container-artifact</module>
|
||||
<module>plexus-container-default</module>
|
||||
</modules>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
e16f1c9b83cdeb142fc038dd0262c61121d58c4b /home/projects/maven/repository-staging/to-ibiblio/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:07:52 CEST 2023
|
||||
plexus-containers-1.5.5.pom>central=
|
||||
+122
@@ -0,0 +1,122 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>2.0.7</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-containers</artifactId>
|
||||
<version>1.5.5</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Containers</name>
|
||||
<description>
|
||||
Plexus IoC Container core with companion tools.
|
||||
</description>
|
||||
|
||||
<modules>
|
||||
<module>plexus-component-annotations</module>
|
||||
<module>plexus-component-metadata</module>
|
||||
<module>plexus-component-javadoc</module>
|
||||
<module>plexus-container-default</module>
|
||||
</modules>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.5.5</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.5.5</developerConnection>
|
||||
<url>http://fisheye.codehaus.org/browse/plexus/plexus-containers/tags/plexus-containers-1.5.5</url>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
<classWorldsVersion>2.2.2</classWorldsVersion>
|
||||
<plexusUtilsVersion>1.4.5</plexusUtilsVersion>
|
||||
<xbeanReflectVersion>3.4</xbeanReflectVersion>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-annotations</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
<version>${classWorldsVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>${plexusUtilsVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xbean</groupId>
|
||||
<artifactId>xbean-reflect</artifactId>
|
||||
<version>${xbeanReflectVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.thoughtworks.qdox</groupId>
|
||||
<artifactId>qdox</artifactId>
|
||||
<version>1.9.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jdom</groupId>
|
||||
<artifactId>jdom</artifactId>
|
||||
<version>1.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>2.0.9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-model</artifactId>
|
||||
<version>2.0.9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-project</artifactId>
|
||||
<version>2.0.9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.collections</groupId>
|
||||
<artifactId>google-collections</artifactId>
|
||||
<version>1.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.5</source>
|
||||
<target>1.5</target>
|
||||
<encoding>${project.build.sourceEncoding}</encoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
cd786b660f8a4c1c520403a5fa04c7be45212b84
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:51 CEST 2023
|
||||
plexus-containers-1.6.pom>central=
|
||||
@@ -0,0 +1,111 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus</artifactId>
|
||||
<version>3.3.2</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>plexus-containers</artifactId>
|
||||
<version>1.6</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Plexus Containers</name>
|
||||
<description>
|
||||
Plexus IoC Container core with companion tools.
|
||||
</description>
|
||||
|
||||
<modules>
|
||||
<module>plexus-component-annotations</module>
|
||||
<module>plexus-component-metadata</module>
|
||||
<module>plexus-component-javadoc</module>
|
||||
<module>plexus-container-default</module>
|
||||
</modules>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:sonatype/plexus-containers.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sonatype/plexus-containers.git</developerConnection>
|
||||
<url>https://github.com/sonatype/plexus-containers</url>
|
||||
<tag>plexus-containers-1.6</tag>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
<classWorldsVersion>2.5.1</classWorldsVersion>
|
||||
<plexusUtilsVersion>3.0.20</plexusUtilsVersion>
|
||||
<xbeanReflectVersion>3.7</xbeanReflectVersion>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-annotations</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-component-metadata</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-classworlds</artifactId>
|
||||
<version>${classWorldsVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>${plexusUtilsVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xbean</groupId>
|
||||
<artifactId>xbean-reflect</artifactId>
|
||||
<version>${xbeanReflectVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.thoughtworks.qdox</groupId>
|
||||
<artifactId>qdox</artifactId>
|
||||
<version>2.0-M2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jdom</groupId>
|
||||
<artifactId>jdom</artifactId>
|
||||
<version>1.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-api</artifactId>
|
||||
<version>2.0.9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-model</artifactId>
|
||||
<version>2.0.9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-project</artifactId>
|
||||
<version>2.0.9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.collections</groupId>
|
||||
<artifactId>google-collections</artifactId>
|
||||
<version>1.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.11</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
01ee1c699a2730f9119b35055fb0674af36125ea
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 11:12:45 CEST 2023
|
||||
plexus-i18n-1.0-beta-6.jar>central=
|
||||
plexus-i18n-1.0-beta-6.pom>central=
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
0de20e1eea680fc277fddb66bc24ba40d449168b
|
||||
@@ -0,0 +1,30 @@
|
||||
<project>
|
||||
<parent>
|
||||
<artifactId>plexus-components</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>1.1.4</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>plexus-i18n</artifactId>
|
||||
<name>Plexus I18N Component</name>
|
||||
<version>1.0-beta-6</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-maven-plugin</artifactId>
|
||||
<version>1.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<distributionManagement>
|
||||
<status>deployed</status>
|
||||
</distributionManagement>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
13316ac895a5b48193582f06273e7f447c9cfd58 /home/projects/maven/repository-staging/to-ibiblio/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-6/plexus-i18n-1.0-beta-6.pom
|
||||
+4
@@ -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:19 CEST 2023
|
||||
plexus-interactivity-api-1.0-alpha-4.pom>central=
|
||||
plexus-interactivity-api-1.0-alpha-4.jar>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
0a8f1178664a5457eef3f4531eb62f9505e1295f
|
||||
+242
@@ -0,0 +1,242 @@
|
||||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-interactivity-api</artifactId>
|
||||
<name>Plexus Default Interactivity Handler</name>
|
||||
<version>1.0-alpha-4</version>
|
||||
<ciManagement>
|
||||
<notifiers>
|
||||
<notifier>
|
||||
<configuration>
|
||||
<address>dev@plexus.codehaus.org</address>
|
||||
</configuration>
|
||||
</notifier>
|
||||
<notifier>
|
||||
<type>irc</type>
|
||||
<configuration>
|
||||
<port>6667</port>
|
||||
<channel>#plexus</channel>
|
||||
<host>irc.codehaus.org</host>
|
||||
</configuration>
|
||||
</notifier>
|
||||
</notifiers>
|
||||
</ciManagement>
|
||||
<inceptionYear>2001</inceptionYear>
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>Plexus Developer List</name>
|
||||
<subscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</subscribe>
|
||||
<unsubscribe>http://lists.codehaus.org/mailman/listinfo/plexus-dev</unsubscribe>
|
||||
<archive>http://lists.codehaus.org/pipermail/plexus-dev/</archive>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>jvanzyl</id>
|
||||
<name>Jason van Zyl</name>
|
||||
<email>jason@zenplex.com</email>
|
||||
<organization>Zenplex</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
<role>Release Manager</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>kaz</id>
|
||||
<name>Pete Kazmier</name>
|
||||
<email></email>
|
||||
<organization></organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jtaylor</id>
|
||||
<name>James Taylor</name>
|
||||
<email>james@jamestaylor.org</email>
|
||||
<organization></organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>dandiep</id>
|
||||
<name>Dan Diephouse</name>
|
||||
<email>dan@envoisolutions.com</email>
|
||||
<organization>Envoi solutions</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>kasper</id>
|
||||
<name>Kasper Nielsen</name>
|
||||
<email>apache@kav.dk</email>
|
||||
<organization></organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>bwalding</id>
|
||||
<name>Ben Walding</name>
|
||||
<email>bwalding@codehaus.org</email>
|
||||
<organization>Walding Consulting Services</organization>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>mhw</id>
|
||||
<name>Mark Wilkinson</name>
|
||||
<email>mhw@kremvax.net</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>michal</id>
|
||||
<name>Michal Maczka</name>
|
||||
<email>mmaczka@interia.pl</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>evenisse</id>
|
||||
<name>Emmanuel Venisse</name>
|
||||
<email>evenisse@codehaus.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>trygvis</id>
|
||||
<name>Trygve Laugstol</name>
|
||||
<email>trygvis@codehaus.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>kenney</id>
|
||||
<name>Kenney Westerhof</name>
|
||||
<email>kenney@codehaus.org</email>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
</developer>
|
||||
</developers>
|
||||
<scm>
|
||||
<connection>scm:svn:svn://svn.codehaus.org/plexus/scm/trunk/plexus-components/plexus-interactivity/plexus-interactivity-api</connection>
|
||||
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/trunk/plexus-components/plexus-interactivity/plexus-interactivity-api</developerConnection>
|
||||
</scm>
|
||||
<organization>
|
||||
<name>Codehaus</name>
|
||||
<url>http://www.codehaus.org/</url>
|
||||
</organization>
|
||||
<build>
|
||||
<sourceDirectory>src/main/java</sourceDirectory>
|
||||
<scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
|
||||
<testSourceDirectory>src/test/java</testSourceDirectory>
|
||||
<outputDirectory>target/classes</outputDirectory>
|
||||
<testOutputDirectory>target/test-classes</testOutputDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
</resource>
|
||||
</resources>
|
||||
<testResources>
|
||||
<testResource>
|
||||
<directory>src/test/resources</directory>
|
||||
</testResource>
|
||||
</testResources>
|
||||
<directory>target</directory>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<configuration>
|
||||
<tagBase>https://svn.codehaus.org/plexus/tags</tagBase>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<repositories>
|
||||
<repository>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<id>snapshots</id>
|
||||
<name>Maven Snapshot Development Repository</name>
|
||||
<url>http://snapshots.maven.codehaus.org/maven2</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>central</id>
|
||||
<name>Maven Repository Switchboard</name>
|
||||
<url>http://repo1.maven.org/maven2</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<id>snapshots-plugins</id>
|
||||
<name>Maven Snapshot Plugins Development Repository</name>
|
||||
<url>http://snapshots.maven.codehaus.org/maven2</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>central</id>
|
||||
<name>Maven Plugin Repository</name>
|
||||
<url>http://repo1.maven.org/maven2</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
<version>1.0-alpha-7</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>classworlds</groupId>
|
||||
<artifactId>classworlds</artifactId>
|
||||
<version>1.1-alpha-2</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<reporting>
|
||||
<outputDirectory>target/site</outputDirectory>
|
||||
</reporting>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>repo1</id>
|
||||
<name>Maven Central Repository</name>
|
||||
<url>scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>snapshots</id>
|
||||
<name>Maven Central Development Repository</name>
|
||||
<url>scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2</url>
|
||||
</snapshotRepository>
|
||||
<status>deployed</status>
|
||||
</distributionManagement>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
1376ffcc4a8d46dee6c1a9096d0dcad3be01f838 /home/projects/maven/repository-staging/to-ibiblio/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:06 CEST 2023
|
||||
plexus-interactivity-api-1.0-alpha-5.pom>central=
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
<project>
|
||||
<parent>
|
||||
<artifactId>plexus-interactivity</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>1.0-alpha-5</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>plexus-interactivity-api</artifactId>
|
||||
<name>Plexus Default Interactivity Handler</name>
|
||||
<version>1.0-alpha-5</version>
|
||||
<distributionManagement>
|
||||
<status>deployed</status>
|
||||
</distributionManagement>
|
||||
</project>
|
||||
+1
@@ -0,0 +1 @@
|
||||
2b8a5279bc0643206606f2d6ee4744824cf36d2d /home/projects/maven/repository-staging/to-ibiblio/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-5/plexus-interactivity-api-1.0-alpha-5.pom
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 17:47:07 CEST 2023
|
||||
plexus-interactivity-jline-1.0-alpha-5.jar>central=
|
||||
plexus-interactivity-jline-1.0-alpha-5.pom>central=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
8c26abea0b1d5398dad82aef36cf93be0c5ce418
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
<project>
|
||||
<parent>
|
||||
<artifactId>plexus-interactivity</artifactId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<version>1.0-alpha-5</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>plexus-interactivity-jline</artifactId>
|
||||
<name>Plexus JLine Interactivity Handler</name>
|
||||
<version>1.0-alpha-5</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>jline</groupId>
|
||||
<artifactId>jline</artifactId>
|
||||
<version>0.9.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-interactivity-api</artifactId>
|
||||
<version>1.0-alpha-5</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<distributionManagement>
|
||||
<status>deployed</status>
|
||||
</distributionManagement>
|
||||
</project>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user