summaryrefslogtreecommitdiffstats
path: root/java/sca
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-03-17 10:14:15 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-03-17 10:14:15 +0000
commita6e4bc09667fa61c117d0aeaf07011fb83c5f920 (patch)
treef64768efeaa2f4c7a344cf3c0ae99ea928665209 /java/sca
parentcd093c9956168e01e901a99492b0dc5bbb411223 (diff)
Start bringing up the build using the maven release plugin
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@755180 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/pom.xml46
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>