mirror of
https://github.com/apache/maven.git
synced 2025-02-08 19:15:12 +00:00
o Added maven-plugin-mapping project to handle repository metadata that contains prefix-to-artifactId mappings for groups of plugins o Added builder classes for plugin mappings o Modified maven-artifact and maven-artifact-manager to handle the concept of repository metadata in addition to artifact metadata. o Added pluginGroups section to settings.xml, new code to merge these lists of plugin groups, and a unit test to ensure that this merge is taking place properly. o Added maven-plugin-mapping to dependencies of maven-core, along with the list of builds to be performed by mboot. Should be ready to incorporate plugin mapping consultation into the lifecycle executor and the deploy mojo... git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@209550 13f79535-47bb-0310-9956-ffa450edef68
58 lines
1.7 KiB
XML
58 lines
1.7 KiB
XML
<project>
|
|
<parent>
|
|
<artifactId>maven</artifactId>
|
|
<groupId>org.apache.maven</groupId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-mapping</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
<name>Maven Plugin Mapping</name>
|
|
<description>Maven Plugin Mapping</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-artifact</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-artifact-manager</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-model</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
<version>1.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.modello</groupId>
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
<version>1.0-alpha-3</version>
|
|
<configuration>
|
|
<version>1.0.0</version>
|
|
<model>src/main/mdo/plugins.mdo</model>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>xpp3-writer</goal>
|
|
<goal>java</goal>
|
|
<goal>xpp3-reader</goal>
|
|
<goal>xsd</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |