Repository: stratos Updated Branches: refs/heads/stratos-4.1.x 6781d75cf -> 5eaaf7d5f
Fix relativePath in aws-lb-extension Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/5eaaf7d5 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/5eaaf7d5 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/5eaaf7d5 Branch: refs/heads/stratos-4.1.x Commit: 5eaaf7d5ff8ed617d50ecc51c7e9bbb463e9c246 Parents: 6781d75 Author: Akila Perera <[email protected]> Authored: Mon Oct 12 02:18:10 2015 +0530 Committer: Akila Perera <[email protected]> Committed: Mon Oct 12 02:18:10 2015 +0530 ---------------------------------------------------------------------- .../load-balancer/modules/aws-extension/pom.xml | 35 ++++++++++---------- 1 file changed, 18 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/5eaaf7d5/extensions/load-balancer/modules/aws-extension/pom.xml ---------------------------------------------------------------------- diff --git a/extensions/load-balancer/modules/aws-extension/pom.xml b/extensions/load-balancer/modules/aws-extension/pom.xml index 65dc8fb..33d4e90 100644 --- a/extensions/load-balancer/modules/aws-extension/pom.xml +++ b/extensions/load-balancer/modules/aws-extension/pom.xml @@ -18,19 +18,20 @@ ~ under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> - - <parent> - <groupId>org.apache.stratos</groupId> - <artifactId>stratos-load-balancer-extensions</artifactId> - <version>4.1.4-SNAPSHOT</version> - </parent> - - <artifactId>org.apache.stratos.aws.extension</artifactId> - <name>Apache Stratos - AWS Extension</name> - <description>Apache Stratos AWS Extension for Load Balancing</description> - <dependencies> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.stratos</groupId> + <artifactId>stratos-load-balancer-extensions</artifactId> + <version>4.1.4-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> + </parent> + + <artifactId>org.apache.stratos.aws.extension</artifactId> + <name>Apache Stratos - AWS Extension</name> + <description>Apache Stratos AWS Extension for Load Balancing</description> + <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> @@ -67,9 +68,9 @@ <version>0.13.wso2v8</version> </dependency> <dependency> - <groupId>com.amazonaws</groupId> - <artifactId>aws-java-sdk</artifactId> - <version>1.8.8</version> + <groupId>com.amazonaws</groupId> + <artifactId>aws-java-sdk</artifactId> + <version>1.8.8</version> </dependency> <dependency> <groupId>org.apache.httpcomponents.wso2</groupId> @@ -116,4 +117,4 @@ </plugin> </plugins> </build> -</project> \ No newline at end of file +</project>
