2011-01-02 07:31:41 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
|
2013-05-16 23:05:20 -04:00
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
2011-01-02 07:31:41 -05:00
|
|
|
|
2013-05-16 23:05:20 -04:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-01-02 07:31:41 -05:00
|
|
|
|
2013-05-16 23:05:20 -04:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
2011-01-02 07:31:41 -05:00
|
|
|
|
|
|
|
-->
|
2011-08-16 21:14:30 -04:00
|
|
|
<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/maven-v4_0_0.xsd">
|
2011-11-14 12:20:10 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2013-05-10 18:49:50 -04:00
|
|
|
<groupId>org.apache.jclouds</groupId>
|
2011-11-14 12:20:10 -05:00
|
|
|
<artifactId>jclouds-project</artifactId>
|
2019-10-13 04:51:16 -04:00
|
|
|
<version>2.2.0</version>
|
2011-11-14 12:20:10 -05:00
|
|
|
<relativePath>../../project/pom.xml</relativePath>
|
|
|
|
</parent>
|
2013-05-10 18:49:50 -04:00
|
|
|
<groupId>org.apache.jclouds.api</groupId>
|
2011-11-14 12:20:10 -05:00
|
|
|
<artifactId>ec2</artifactId>
|
2013-12-01 14:20:56 -05:00
|
|
|
<name>jclouds ec2 api</name>
|
2011-11-14 12:20:10 -05:00
|
|
|
<description>jclouds components to access an implementation of EC2</description>
|
|
|
|
<packaging>bundle</packaging>
|
2011-01-02 07:31:41 -05:00
|
|
|
|
2011-11-14 12:20:10 -05:00
|
|
|
<properties>
|
|
|
|
<test.ec2.endpoint>https://ec2.us-east-1.amazonaws.com</test.ec2.endpoint>
|
2013-11-14 13:31:10 -05:00
|
|
|
<test.ec2.api-version>2010-08-31</test.ec2.api-version>
|
2013-02-02 11:41:51 -05:00
|
|
|
<test.ec2.build-version />
|
2011-11-14 12:20:10 -05:00
|
|
|
<test.ec2.identity>${test.aws.identity}</test.ec2.identity>
|
|
|
|
<test.ec2.credential>${test.aws.credential}</test.ec2.credential>
|
2013-09-26 16:05:20 -04:00
|
|
|
<!-- default template pattern gets a problematic Ubuntu 10.04 AMI -->
|
|
|
|
<test.ec2.template>hardwareId=m1.small,imageId=us-east-1/ami-1ab3ce73</test.ec2.template>
|
|
|
|
<!-- Active EBS template as of 9/25/2013 -->
|
|
|
|
<test.ec2.ebs-template>hardwareId=m1.small,imageId=us-east-1/ami-53b1ff3a</test.ec2.ebs-template>
|
2012-11-04 16:48:05 -05:00
|
|
|
<!-- Windows_Server-2008-R2 with WinRM enabled (setup instructions at http://www.frontiertown.co.uk/2011/12/overthere-control-windows-from-java/) -->
|
|
|
|
<test.ec2.windows-template>hardwareId=m1.small,imageId=us-east-1/ami-0cb76d65</test.ec2.windows-template>
|
2012-06-03 11:26:31 -04:00
|
|
|
<jclouds.osgi.export>org.jclouds.ec2*;version="${project.version}"</jclouds.osgi.export>
|
2014-12-01 12:46:13 -05:00
|
|
|
<jclouds.osgi.import>org.jclouds*;version="${project.version}",*</jclouds.osgi.import>
|
2011-11-14 12:20:10 -05:00
|
|
|
</properties>
|
2011-01-02 07:31:41 -05:00
|
|
|
|
2011-11-14 12:20:10 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2013-05-10 18:49:50 -04:00
|
|
|
<groupId>org.apache.jclouds.api</groupId>
|
2013-01-22 12:22:31 -05:00
|
|
|
<artifactId>sts</artifactId>
|
2011-11-14 12:20:10 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-05-10 18:49:50 -04:00
|
|
|
<groupId>org.apache.jclouds</groupId>
|
2011-11-14 12:20:10 -05:00
|
|
|
<artifactId>jclouds-compute</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-05-10 18:49:50 -04:00
|
|
|
<groupId>org.apache.jclouds</groupId>
|
2011-11-14 12:20:10 -05:00
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-05-10 18:49:50 -04:00
|
|
|
<groupId>org.apache.jclouds</groupId>
|
2011-11-14 12:20:10 -05:00
|
|
|
<artifactId>jclouds-compute</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-05-10 18:49:50 -04:00
|
|
|
<groupId>org.apache.jclouds.driver</groupId>
|
2011-11-14 12:20:10 -05:00
|
|
|
<artifactId>jclouds-log4j</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-05-10 18:49:50 -04:00
|
|
|
<groupId>org.apache.jclouds.driver</groupId>
|
2011-11-14 12:20:10 -05:00
|
|
|
<artifactId>jclouds-sshj</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-11-16 15:26:35 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp</groupId>
|
|
|
|
<artifactId>mockwebserver</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<!-- Already provided by jclouds-sshj -->
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2014-12-01 12:46:13 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.auto.service</groupId>
|
|
|
|
<artifactId>auto-service</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2011-11-14 12:20:10 -05:00
|
|
|
</dependencies>
|
2014-12-01 12:46:13 -05:00
|
|
|
|
2011-11-14 12:20:10 -05:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>live</id>
|
|
|
|
<build>
|
2011-05-15 15:08:53 -04:00
|
|
|
<plugins>
|
2011-11-14 12:20:10 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration</id>
|
|
|
|
<phase>integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
2011-05-15 15:08:53 -04:00
|
|
|
<configuration>
|
2011-11-14 12:20:10 -05:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<test.ec2.endpoint>${test.ec2.endpoint}</test.ec2.endpoint>
|
2012-01-05 16:09:35 -05:00
|
|
|
<test.ec2.api-version>${test.ec2.api-version}</test.ec2.api-version>
|
2012-01-05 20:51:55 -05:00
|
|
|
<test.ec2.build-version>${test.ec2.build-version}</test.ec2.build-version>
|
2011-11-14 12:20:10 -05:00
|
|
|
<test.ec2.identity>${test.ec2.identity}</test.ec2.identity>
|
|
|
|
<test.ec2.credential>${test.ec2.credential}</test.ec2.credential>
|
2012-06-15 16:09:28 -04:00
|
|
|
<test.ec2.template>${test.ec2.template}</test.ec2.template>
|
|
|
|
<test.ec2.ebs-template>${test.ec2.ebs-template}</test.ec2.ebs-template>
|
2012-07-30 04:02:23 -04:00
|
|
|
<test.ec2.windows-template>${test.ec2.windows-template}</test.ec2.windows-template>
|
|
|
|
<test.ec2.windows-owner>${test.ec2.windows-owner}</test.ec2.windows-owner>
|
2011-11-14 12:20:10 -05:00
|
|
|
</systemPropertyVariables>
|
2011-05-15 15:08:53 -04:00
|
|
|
</configuration>
|
2011-11-14 12:20:10 -05:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-05-15 15:08:53 -04:00
|
|
|
</plugins>
|
2011-11-14 12:20:10 -05:00
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2011-01-02 07:31:41 -05:00
|
|
|
</project>
|
|
|
|
|