mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-2777. Apache build should create jar file cloud-ec2.aar and package it under webapps7080/awsapi/WEB-INF/services
This commit is contained in:
parent
44b219ec75
commit
58d648345e
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue