diff options
author | Brett Porter <brett@apache.org> | 2013-01-07 12:34:46 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2013-01-07 12:34:46 +0000 |
commit | 17860d8e9afc3310ac95b07a8d0e141953645b01 (patch) | |
tree | 4a63262504533d376750a972c2ec8ead57b2c2e5 | |
parent | 6efe27b5c8246a07a23b65d92e21ce43f900bc28 (diff) | |
download | archiva-17860d8e9afc3310ac95b07a8d0e141953645b01.tar.gz archiva-17860d8e9afc3310ac95b07a8d0e141953645b01.zip |
merge from archiva-1.3.xarchiva-1.3.6
git-svn-id: https://svn.apache.org/repos/asf/archiva/tags/archiva-1.3.6@1429774 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | archiva-docs/pom.xml | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/archiva-docs/pom.xml b/archiva-docs/pom.xml index 584089278..f39c35cba 100644 --- a/archiva-docs/pom.xml +++ b/archiva-docs/pom.xml @@ -83,7 +83,7 @@ <distributionManagement> <site> <id>apache.website</id> - <url>${siteBaseDeployment}/docs/${project.version}</url> + <url>scm:svn:https://svn.apache.org/repos/asf/archiva/site-content/docs/${project.version}</url> </site> </distributionManagement> @@ -94,17 +94,22 @@ <build> <plugins> <plugin> - <artifactId>maven-site-plugin</artifactId> - <executions> - <execution> - <id>deploy</id> - <phase>deploy</phase> - <goals> - <goal>deploy</goal> - </goals> - </execution> - </executions> - </plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-scm-publish-plugin</artifactId> + <configuration> + <checkinComment>Apache Archiva Versioned docs for ${project.version}</checkinComment> + <content>${project.build.directory}/site</content> + </configuration> + <executions> + <execution> + <id>scm-publish</id> + <phase>deploy</phase> + <goals> + <goal>publish-scm</goal> + </goals> + </execution> + </executions> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> |