diff options
Diffstat (limited to 'sandbox/ant/sca/branches')
-rw-r--r-- | sandbox/ant/sca/branches/foo/pom.xml | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/sandbox/ant/sca/branches/foo/pom.xml b/sandbox/ant/sca/branches/foo/pom.xml index 8ce26c5ddb..7eaede47c5 100644 --- a/sandbox/ant/sca/branches/foo/pom.xml +++ b/sandbox/ant/sca/branches/foo/pom.xml @@ -409,11 +409,11 @@ <id>release</id> <modules> <module>modules</module> + <module>archetypes</module> +<!-- <module>samples</module> <module>features</module> <module>distribution</module> - <module>archetypes</module> -<!-- <module>itest</module> <module>stest</module> <module>vtest</module> @@ -448,6 +448,38 @@ </plugins> </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> |