diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-03-19 15:37:55 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-03-19 15:37:55 +0000 |
commit | f72084b5a21ee94b86d2d1bc3aadd98b79524711 (patch) | |
tree | f263e39d0587f1382c9ea87c4eab3a9657bb32da /sandbox/ant | |
parent | eb0f1aa15d6f6cb9905f80d6f656b31cfe76d618 (diff) |
Add a deploy profile
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@756047 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/ant')
-rw-r--r-- | sandbox/ant/sca/tags/2.0-M2/pom.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sandbox/ant/sca/tags/2.0-M2/pom.xml b/sandbox/ant/sca/tags/2.0-M2/pom.xml index 6118fd7660..811bfb3031 100644 --- a/sandbox/ant/sca/tags/2.0-M2/pom.xml +++ b/sandbox/ant/sca/tags/2.0-M2/pom.xml @@ -449,6 +449,39 @@ </build> </profile> + <profile> + <id>deploy</id> + <modules> + <module>modules</module> + <module>archetypes</module> + </modules> + <build> + <plugins> + <plugin> + <inherited>true</inherited> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.4</version> + <configuration> + <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository> + <updateReleaseInfo>true</updateReleaseInfo> + </configuration> + </plugin> + <plugin> + <artifactId>maven-gpg-plugin</artifactId> + <version>1.0-alpha-4</version> + <executions> + <execution> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> + + </plugins> + </build> + </profile> + </profiles> |