2009-11-14 06:58:41 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
|
|
|
|
|
2010-08-12 16:04:26 -07:00
|
|
|
Copyright (C) 2010 Cloud Conscious, LLC. <info@cloudconscious.com>
|
2009-11-14 06:58:41 +00:00
|
|
|
|
2010-01-01 17:56:29 +00:00
|
|
|
====================================================================
|
|
|
|
Licensed 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
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
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.
|
|
|
|
====================================================================
|
|
|
|
|
|
|
|
-->
|
2009-11-14 06:58:41 +00:00
|
|
|
|
2011-01-09 17:52:48 -08: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" >
|
2009-12-11 16:36:56 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-11-14 06:58:41 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>org.jclouds</groupId>
|
2011-01-09 17:52:48 -08:00
|
|
|
<artifactId>jclouds-project</artifactId>
|
2010-02-04 21:30:22 -08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2011-01-09 17:52:48 -08:00
|
|
|
<relativePath>../../project/pom.xml</relativePath>
|
2009-11-14 06:58:41 +00:00
|
|
|
</parent>
|
2011-01-09 17:52:48 -08:00
|
|
|
<groupId>org.jclouds.provider</groupId>
|
|
|
|
<artifactId>trmk-ecloud</artifactId>
|
|
|
|
<name>jclouds Terremark Enterprise Cloud provider</name>
|
|
|
|
<description>jclouds Terremark Enterprise Cloud provider</description>
|
2011-05-15 12:08:53 -07:00
|
|
|
<packaging>bundle</packaging>
|
2011-01-09 17:52:48 -08:00
|
|
|
|
2009-11-14 06:58:41 +00:00
|
|
|
<properties>
|
2010-09-19 10:22:09 -07:00
|
|
|
<test.trmk-ecloud.endpoint>https://services.enterprisecloud.terremark.com/api</test.trmk-ecloud.endpoint>
|
2011-01-29 21:06:22 -08:00
|
|
|
<test.trmk-ecloud.apiversion>0.8b-ext2.7</test.trmk-ecloud.apiversion>
|
2010-09-19 10:22:09 -07:00
|
|
|
<test.trmk-ecloud.identity>FIXME</test.trmk-ecloud.identity>
|
|
|
|
<test.trmk-ecloud.credential>FIXME</test.trmk-ecloud.credential>
|
2009-11-14 06:58:41 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2011-01-09 17:52:48 -08:00
|
|
|
<groupId>org.jclouds.common</groupId>
|
|
|
|
<artifactId>trmk-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds.common</groupId>
|
|
|
|
<artifactId>trmk-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds.common</groupId>
|
|
|
|
<artifactId>vcloud-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds.api</groupId>
|
|
|
|
<artifactId>vcloudexpress</artifactId>
|
2009-11-14 06:58:41 +00:00
|
|
|
<version>${project.version}</version>
|
2011-01-09 17:52:48 -08:00
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
2009-11-14 06:58:41 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-01-09 17:52:48 -08:00
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-compute</artifactId>
|
2009-11-14 06:58:41 +00:00
|
|
|
<version>${project.version}</version>
|
2009-12-20 14:38:06 +00:00
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
2009-11-14 06:58:41 +00:00
|
|
|
</dependency>
|
2011-01-09 17:52:48 -08:00
|
|
|
<dependency>
|
2011-01-15 20:58:57 -08:00
|
|
|
<groupId>org.jclouds.driver</groupId>
|
2011-01-09 17:52:48 -08:00
|
|
|
<artifactId>jclouds-log4j</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-01-15 20:58:57 -08:00
|
|
|
<groupId>org.jclouds.driver</groupId>
|
2011-01-09 17:52:48 -08:00
|
|
|
<artifactId>jclouds-jsch</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-02-01 21:18:24 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jcraft</groupId>
|
|
|
|
<artifactId>jsch</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-01-09 17:52:48 -08:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.16</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-11-14 06:58:41 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2010-08-19 01:43:26 -07:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>live</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<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>
|
|
|
|
<configuration>
|
2011-01-23 17:27:11 -08:00
|
|
|
<threadCount>1</threadCount>
|
2010-08-19 01:43:26 -07:00
|
|
|
<systemProperties>
|
|
|
|
<property>
|
2010-09-19 10:22:09 -07:00
|
|
|
<name>test.trmk-ecloud.endpoint</name>
|
|
|
|
<value>${test.trmk-ecloud.endpoint}</value>
|
2010-08-19 01:43:26 -07:00
|
|
|
</property>
|
|
|
|
<property>
|
2010-09-19 10:22:09 -07:00
|
|
|
<name>test.trmk-ecloud.apiversion</name>
|
|
|
|
<value>${test.trmk-ecloud.apiversion}</value>
|
2010-08-19 01:43:26 -07:00
|
|
|
</property>
|
|
|
|
<property>
|
2010-09-19 10:22:09 -07:00
|
|
|
<name>test.trmk-ecloud.identity</name>
|
|
|
|
<value>${test.trmk-ecloud.identity}</value>
|
2010-08-19 01:43:26 -07:00
|
|
|
</property>
|
|
|
|
<property>
|
2010-09-19 10:22:09 -07:00
|
|
|
<name>test.trmk-ecloud.credential</name>
|
|
|
|
<value>${test.trmk-ecloud.credential}</value>
|
2010-08-19 01:43:26 -07:00
|
|
|
</property>
|
|
|
|
</systemProperties>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2011-05-15 12:08:53 -07:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
|
|
|
|
<Export-Package>org.jclouds.vcloud.terremark.*;version="${project.version}"</Export-Package>
|
|
|
|
<Import-Package>org.jclouds.*;version="${project.version}",*</Import-Package>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2010-08-19 01:43:26 -07:00
|
|
|
|
2009-11-14 06:58:41 +00:00
|
|
|
</project>
|