mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
o Adjusted the maven-archetype stuff to work with the new artifact creation/resolution/etc. methods in maven-artifact and maven-core. o Removed all direct construction of DefaultArtifact and replaced with ArtifactConstructionSupport where it would have involved putting the DefaultArtifactFactory in the plexus.xml, and where the code doesn't need dependency-oriented methods. o Archetype works now, using the example provided in plexus/plexus-site/src/site/apt/building-plexus-applications.apt git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163615 13f79535-47bb-0310-9956-ffa450edef68
22 lines
628 B
XML
22 lines
628 B
XML
<model>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>maven</groupId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-archetype-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven Archetype Plugin</name>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-archetype-core</artifactId>
|
|
<version>1.0-alpha-1-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</model> |