mirror of https://github.com/apache/maven.git
69 lines
2.2 KiB
XML
69 lines
2.2 KiB
XML
<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>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-one-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>Maven 1.x Plugin</name>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-archiver</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-project</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-archiver</artifactId>
|
|
<version>1.0-alpha-3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
<version>1.0.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
<configuration>
|
|
<goalPrefix>maven-one-plugin</goalPrefix>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</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>
|
|
<site>
|
|
<id>website</id>
|
|
<url>scp://minotaur.apache.org/www/maven.apache.org/sandbox/</url>
|
|
</site>
|
|
</distributionManagement>
|
|
</project>
|