diff options
-rw-r--r-- | java/sca/pom.xml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/java/sca/pom.xml b/java/sca/pom.xml index b3b743e3eb..19477363e2 100644 --- a/java/sca/pom.xml +++ b/java/sca/pom.xml @@ -405,6 +405,37 @@ </build> </profile> + <profile> + <id>release</id> + <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> @@ -514,6 +545,21 @@ </dependency> </dependencies> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>2.0-beta-8</version> + <configuration> + <tagBase>https://svn.apache.org/repos/asf/tuscany/tags/java/sca</tagBase> + <useReleaseProfile>false</useReleaseProfile> + <preparationGoals>clean install</preparationGoals> + <goals>deploy</goals> + <arguments>-Prelease,deploy</arguments> + <autoVersionSubmodules>true</autoVersionSubmodules> + </configuration> + </plugin> + </plugins> </pluginManagement> </build> |