2011-01-04 18:58:25 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (C) 2010 Cloud Conscious, LLC. <info@cloudconscious.com>
|
|
|
|
|
|
|
|
====================================================================
|
|
|
|
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.
|
|
|
|
====================================================================
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
2011-06-05 03:17:43 -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-01-04 18:58:25 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2011-01-06 15:11:04 -05:00
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-project</artifactId>
|
2011-08-04 23:09:23 -04:00
|
|
|
<version>1.2.0-SNAPSHOT</version>
|
2011-01-06 15:11:04 -05:00
|
|
|
<relativePath>../../project/pom.xml</relativePath>
|
2011-01-04 18:58:25 -05:00
|
|
|
</parent>
|
2011-01-06 15:11:04 -05:00
|
|
|
<groupId>org.jclouds.api</groupId>
|
2011-01-04 18:58:25 -05:00
|
|
|
<artifactId>walrus</artifactId>
|
2011-01-05 05:27:17 -05:00
|
|
|
<name>jclouds Eucalyptus Walrus api</name>
|
|
|
|
<description>Simple Storage Service (S3) implementation based on Eucalyptus Walrus</description>
|
2011-05-15 15:08:53 -04:00
|
|
|
<packaging>bundle</packaging>
|
2011-01-04 18:58:25 -05:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<test.initializer>org.jclouds.walrus.blobstore.WalrusTestInitializer</test.initializer>
|
|
|
|
<test.walrus.endpoint>http://ecc.eucalyptus.com:8773/services/Walrus</test.walrus.endpoint>
|
|
|
|
<test.walrus.apiversion>2006-03-01</test.walrus.apiversion>
|
|
|
|
<test.walrus.identity>${test.eucalyptus.identity}</test.walrus.identity>
|
|
|
|
<test.walrus.credential>${test.eucalyptus.credential}</test.walrus.credential>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds.api</groupId>
|
|
|
|
<artifactId>s3</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds.api</groupId>
|
|
|
|
<artifactId>s3</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<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>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-blobstore</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-01-15 23:58:57 -05:00
|
|
|
<groupId>org.jclouds.driver</groupId>
|
2011-01-04 18:58:25 -05:00
|
|
|
<artifactId>jclouds-log4j</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.16</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<systemProperties>
|
|
|
|
<property>
|
|
|
|
<name>test.walrus.endpoint</name>
|
|
|
|
<value>${test.walrus.endpoint}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>test.walrus.apiversion</name>
|
|
|
|
<value>${test.walrus.apiversion}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>test.walrus.identity</name>
|
|
|
|
<value>${test.walrus.identity}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>test.walrus.credential</name>
|
|
|
|
<value>${test.walrus.credential}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>test.initializer</name>
|
|
|
|
<value>${test.initializer}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>jclouds.blobstore.httpstream.url</name>
|
|
|
|
<value>${jclouds.blobstore.httpstream.url}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>jclouds.blobstore.httpstream.md5</name>
|
|
|
|
<value>${jclouds.blobstore.httpstream.md5}</value>
|
|
|
|
</property>
|
|
|
|
</systemProperties>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2011-05-15 15:08:53 -04: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.walrus.*;version="${project.version}"</Export-Package>
|
|
|
|
<Import-Package>org.jclouds.*;version="${project.version}",*</Import-Package>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2011-01-04 18:58:25 -05:00
|
|
|
|
|
|
|
</project>
|
|
|
|
|