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:02:19 UTC

git commit: updated refs/heads/4.2 to 15ccce4

Updated Branches:
  refs/heads/4.2 fe568fefd -> 15ccce436


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/15ccce43
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/15ccce43
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/15ccce43

Branch: refs/heads/4.2
Commit: 15ccce436b9f08b39caa1d978ba34fe1a39a8977
Parents: fe568fe
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:26:22 2013 +0530

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


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/15ccce43/awsapi/pom.xml
----------------------------------------------------------------------
diff --git a/awsapi/pom.xml b/awsapi/pom.xml
index d457349..daa6d9b 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>