2011-02-06 20:29:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
|
2011-11-14 12:20:10 -05:00
|
|
|
Licensed to jclouds, Inc. (jclouds) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. jclouds 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-02-06 20:29:52 -05:00
|
|
|
|
2011-11-14 12:20:10 -05:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-02-06 20:29:52 -05:00
|
|
|
|
2011-11-14 12:20:10 -05: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-02-06 20:29:52 -05:00
|
|
|
|
2011-08-16 21:14:30 -04:00
|
|
|
-->
|
2011-02-06 20:29:52 -05: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>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-project</artifactId>
|
2012-09-17 04:43:52 -04:00
|
|
|
<version>1.6.0-SNAPSHOT</version>
|
2011-11-14 12:20:10 -05:00
|
|
|
<relativePath>../../project/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<groupId>org.jclouds.api</groupId>
|
|
|
|
<artifactId>cloudstack</artifactId>
|
|
|
|
<name>jclouds cloudstack core</name>
|
|
|
|
<description>jclouds components to access cloudstack</description>
|
|
|
|
<packaging>bundle</packaging>
|
2011-05-15 15:08:53 -04:00
|
|
|
|
2011-11-14 12:20:10 -05:00
|
|
|
<!-- bootstrapping: need to fetch the project POM -->
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-nexus-snapshots</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<test.cloudstack.endpoint>http://localhost:8080/client/api</test.cloudstack.endpoint>
|
2012-06-15 16:09:28 -04:00
|
|
|
<test.cloudstack.api-version>3.0.3</test.cloudstack.api-version>
|
2012-01-05 20:51:55 -05:00
|
|
|
<test.cloudstack.build-version></test.cloudstack.build-version>
|
2011-11-14 12:20:10 -05:00
|
|
|
<test.cloudstack.identity>FIXME_apiKey</test.cloudstack.identity>
|
|
|
|
<test.cloudstack.credential>FIXME_secretKey</test.cloudstack.credential>
|
2011-11-15 05:59:42 -05:00
|
|
|
<test.cloudstack.domainAdminIdentity></test.cloudstack.domainAdminIdentity>
|
|
|
|
<test.cloudstack.domainAdminCredential></test.cloudstack.domainAdminCredential>
|
2012-03-21 07:04:26 -04:00
|
|
|
<test.cloudstack.globalAdminIdentity></test.cloudstack.globalAdminIdentity>
|
|
|
|
<test.cloudstack.globalAdminCredential></test.cloudstack.globalAdminCredential>
|
2012-06-15 16:09:28 -04:00
|
|
|
<test.cloudstack.template></test.cloudstack.template>
|
2012-06-03 11:26:31 -04:00
|
|
|
<jclouds.osgi.export>org.jclouds.cloudstack*;version="${project.version}"</jclouds.osgi.export>
|
|
|
|
<jclouds.osgi.import>
|
|
|
|
org.jclouds.compute.internal;version="${project.version}",
|
|
|
|
org.jclouds.rest.internal;version="${project.version}",
|
|
|
|
org.jclouds*;version="${project.version}",
|
|
|
|
*
|
|
|
|
</jclouds.osgi.import>
|
2011-11-14 12:20:10 -05:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-compute</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-compute</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds.driver</groupId>
|
|
|
|
<artifactId>jclouds-sshj</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds.driver</groupId>
|
2012-05-21 13:55:01 -04:00
|
|
|
<artifactId>jclouds-slf4j</artifactId>
|
2011-11-14 12:20:10 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-05-21 13:55:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-11-14 12:20:10 -05:00
|
|
|
</dependencies>
|
|
|
|
<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
|
|
|
<!-- too many tasks seem to overload the server and make the test take longer -->
|
|
|
|
<threadCount>2</threadCount>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<test.cloudstack.endpoint>${test.cloudstack.endpoint}</test.cloudstack.endpoint>
|
2012-01-05 16:09:35 -05:00
|
|
|
<test.cloudstack.api-version>${test.cloudstack.api-version}</test.cloudstack.api-version>
|
2012-01-05 20:51:55 -05:00
|
|
|
<test.cloudstack.build-version>${test.cloudstack.build-version}</test.cloudstack.build-version>
|
2011-11-14 12:20:10 -05:00
|
|
|
<test.cloudstack.identity>${test.cloudstack.identity}</test.cloudstack.identity>
|
|
|
|
<test.cloudstack.credential>${test.cloudstack.credential}</test.cloudstack.credential>
|
2012-06-15 16:09:28 -04:00
|
|
|
<test.cloudstack.template>${test.cloudstack.template}</test.cloudstack.template>
|
2011-11-15 05:59:42 -05:00
|
|
|
<test.cloudstack.domainAdminIdentity>${test.cloudstack.domainAdminIdentity}</test.cloudstack.domainAdminIdentity>
|
|
|
|
<test.cloudstack.domainAdminCredential>${test.cloudstack.domainAdminCredential}</test.cloudstack.domainAdminCredential>
|
2012-03-21 07:04:26 -04:00
|
|
|
<test.cloudstack.globalAdminIdentity>${test.cloudstack.globalAdminIdentity}</test.cloudstack.globalAdminIdentity>
|
|
|
|
<test.cloudstack.globalAdminCredential>${test.cloudstack.globalAdminCredential}</test.cloudstack.globalAdminCredential>
|
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-02-06 20:29:52 -05:00
|
|
|
</project>
|