[maven-release-plugin] prepare release maven-verifier-1.0-beta-1

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@289524 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-09-16 13:19:38 +00:00
parent b3e1971a64
commit 03c0dc0ac0
2 changed files with 85 additions and 20 deletions

View File

@ -1,5 +1,4 @@
<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">
<project>
<parent>
<artifactId>maven-plugin-parent</artifactId>
<groupId>org.apache.maven.plugins</groupId>
@ -9,7 +8,7 @@
<artifactId>maven-verifier-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Maven Verifier Plugin</name>
<version>1.0-beta-1-SNAPSHOT</version>
<version>1.0-beta-1</version>
<developers>
<developer>
<id>vmassol</id>
@ -22,27 +21,11 @@
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.modello</groupId>
<artifactId>modello-maven-plugin</artifactId>
<configuration>
<model>src/main/mdo/verifications.mdo</model>
<version>1.0.0</version>
</configuration>
<executions>
<execution>
<goals>
@ -52,7 +35,23 @@
</goals>
</execution>
</executions>
<configuration>
<model>src/main/mdo/verifications.mdo</model>
<version>1.0.0</version>
</configuration>
</plugin>
</plugins>
</build>
</project>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,66 @@
<project>
<parent>
<artifactId>maven-plugin-parent</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>2.0-beta-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>maven-verifier-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Maven Verifier Plugin</name>
<version>1.0-beta-1</version>
<developers>
<developer>
<id>vmassol</id>
<name>Vincent Massol</name>
<email>vmassol@apache.org</email>
<organization>Apache Software Foundation</organization>
<roles>
<role>Creator</role>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.modello</groupId>
<artifactId>modello-maven-plugin</artifactId>
<version>RELEASE</version>
<executions>
<execution>
<goals>
<goal>xpp3-reader</goal>
<goal>xpp3-writer</goal>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<model>src/main/mdo/verifications.mdo</model>
<version>1.0.0</version>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>1.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0-beta-1</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>