Author: hboutemy Date: Sat May 11 10:09:10 2013 New Revision: 1481282 URL: http://svn.apache.org/r1481282 Log: prepare release
Modified: maven/plugins/trunk/maven-dependency-plugin/pom.xml Modified: maven/plugins/trunk/maven-dependency-plugin/pom.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/pom.xml?rev=1481282&r1=1481281&r2=1481282&view=diff ============================================================================== --- maven/plugins/trunk/maven-dependency-plugin/pom.xml (original) +++ maven/plugins/trunk/maven-dependency-plugin/pom.xml Sat May 11 10:09:10 2013 @@ -49,6 +49,12 @@ under the License. <system>JIRA</system> <url>http://jira.codehaus.org/browse/MDEP</url> </issueManagement> + <distributionManagement> + <site> + <id>apache.website</id> + <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path}</url> + </site> + </distributionManagement> <contributors> <contributor> @@ -76,6 +82,7 @@ under the License. <doxiaVersion>1.0</doxiaVersion> <pluginTestingVersion>2.1</pluginTestingVersion> <mavenPluginPluginVersion>3.2</mavenPluginPluginVersion> + <maven.site.path>plugins-archives/${project.artifactId}-LATEST</maven.site.path> </properties> <dependencies> @@ -211,7 +218,6 @@ under the License. <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> - <version>${mavenPluginPluginVersion}</version> <scope>provided</scope> </dependency> @@ -276,6 +282,12 @@ under the License. </execution> </executions> </plugin> + <plugin> + <artifactId>maven-release-plugin</artifactId> + <configuration> + <releaseProfiles>apache-release,rat,run-its</releaseProfiles><!-- TODO add to parent pom --> + </configuration> + </plugin> </plugins> </pluginManagement> <plugins> @@ -314,12 +326,6 @@ under the License. <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <configuration> - <debug>true</debug> - <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> - <preBuildHookScript>setup</preBuildHookScript> - <postBuildHookScript>verify</postBuildHookScript> - <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> - <settingsFile>src/it/settings.xml</settingsFile> <goals> <goal>clean</goal> <goal>process-sources</goal> @@ -353,18 +359,4 @@ under the License. </reporting> </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>