You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by li...@apache.org on 2013/07/09 12:03:12 UTC

git commit: updated refs/heads/master-6-17-stable to 3ff604c

Updated Branches:
  refs/heads/master-6-17-stable 5e1f6e6a0 -> 3ff604c2c


CLOUDSTACK-2777. Apache build should create jar file cloud-ec2.aar and package it under webapps7080/awsapi/WEB-INF/services


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/3ff604c2
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/3ff604c2
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/3ff604c2

Branch: refs/heads/master-6-17-stable
Commit: 3ff604c2cdf5ddf6b700aeb0147ca4c1f841a882
Parents: 5e1f6e6
Author: Likitha Shetty <li...@citrix.com>
Authored: Tue Jul 9 15:23:38 2013 +0530
Committer: Likitha Shetty <li...@citrix.com>
Committed: Tue Jul 9 15:27:13 2013 +0530

----------------------------------------------------------------------
 awsapi/pom.xml | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/3ff604c2/awsapi/pom.xml
----------------------------------------------------------------------
diff --git a/awsapi/pom.xml b/awsapi/pom.xml
index ff72a44..bcae072 100644
--- a/awsapi/pom.xml
+++ b/awsapi/pom.xml
@@ -368,6 +368,33 @@
           </execution>
 		</executions>
 	  </plugin>
+         <plugin>
+            <groupId>org.apache.axis2</groupId>
+            <artifactId>axis2-aar-maven-plugin</artifactId>
+            <version>1.6.2</version>
+            <extensions>true</extensions>
+            <configuration>
+              <includeDependencies>false</includeDependencies>
+              <aarName>cloud-ec2</aarName>
+              <outputDirectory>${project.build.directory}/WEB-INF/services</outputDirectory>
+              <fileSets>
+                <fileSet>
+                  <directory>resource/AmazonEC2</directory>
+                  <outputDirectory>META-INF</outputDirectory>
+                  <includes>
+                    <include>services.xml</include>
+                  </includes>
+                </fileSet>
+              </fileSets>
+            </configuration>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>aar</goal>
+                </goals>
+              </execution>
+            </executions>
+         </plugin>
     </plugins>
     <pluginManagement>
       <plugins>