Repository: commons-release-plugin Updated Branches: refs/heads/master 2aca8431b -> c176e464e
Use as much of 1.0 as we can here Project: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/commit/c176e464 Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/c176e464 Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/c176e464 Branch: refs/heads/master Commit: c176e464e3731cdf474dc06a5a34b15a9be578c9 Parents: 2aca843 Author: Rob Tompkins <[email protected]> Authored: Fri Feb 23 07:08:10 2018 -0500 Committer: Rob Tompkins <[email protected]> Committed: Fri Feb 23 07:08:10 2018 -0500 ---------------------------------------------------------------------- pom.xml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/c176e464/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ef35ed5..f6dd825 100644 --- a/pom.xml +++ b/pom.xml @@ -368,6 +368,31 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.commons</groupId> + <artifactId>commons-release-plugin</artifactId> + <version>1.0</version> + <configuration> + <distSvnStagingUrl>scm:svn:https://dist.apache.org/repos/dist/dev/commons/foo</distSvnStagingUrl> + <dryRun>${dryRun}</dryRun> + </configuration> + <executions> + <execution> + <id>detatch-distributions</id> + <phase>verify</phase> + <goals> + <goal>detach-distributions</goal> + </goals> + </execution> + <execution> + <id>compress-site</id> + <phase>site</phase> + <goals> + <goal>compress-site</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> <reporting>
