mirror of https://github.com/apache/jclouds.git
162 lines
5.9 KiB
XML
162 lines
5.9 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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">
|
||
|
<parent>
|
||
|
<artifactId>jclouds-tools-project</artifactId>
|
||
|
<groupId>org.jclouds</groupId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<relativePath>../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>jclouds-vfs</artifactId>
|
||
|
<name>jclouds blobstore-vfs integration</name>
|
||
|
<description>jclouds blobstore integration with apache commons vfs </description>
|
||
|
<properties>
|
||
|
<test.blobstore.uri>blobstore://${jclouds.aws.accesskeyid}:${jclouds.aws.secretaccesskey}@s3/jclouds-getpath</test.blobstore.uri>
|
||
|
<jclouds.test.listener></jclouds.test.listener>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-vfs</artifactId>
|
||
|
<version>2.0-SNAPSHOT</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>commons-httpclient</groupId>
|
||
|
<artifactId>commons-httpclient</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-vfs</artifactId>
|
||
|
<version>2.0-SNAPSHOT</version>
|
||
|
<type>test-jar</type>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>jclouds-aws</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>jclouds-azure</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>jclouds-rackspace</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>jclouds-log4j</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>log4j</groupId>
|
||
|
<artifactId>log4j</artifactId>
|
||
|
<version>1.2.14</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>2.4.3</version>
|
||
|
<configuration>
|
||
|
<systemProperties>
|
||
|
<property>
|
||
|
<name>test.basedir</name>
|
||
|
<value>src/test/resources/test-data</value>
|
||
|
</property>
|
||
|
<property>
|
||
|
<name>test.basedir.res</name>
|
||
|
<value>test-data</value>
|
||
|
</property>
|
||
|
</systemProperties>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<mainClass>org.jclouds.vfs.tools.blobstore.BlobStoreShell</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<descriptorRefs>
|
||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
</descriptorRefs>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<mainClass>org.jclouds.vfs.tools.blobstore.BlobStoreShell</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>make-assembly</id>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>single</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>live</id>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<systemProperties>
|
||
|
<property>
|
||
|
<name>test.basedir</name>
|
||
|
<value>src/test/resources/test-data</value>
|
||
|
</property>
|
||
|
<property>
|
||
|
<name>test.blobstore.uri</name>
|
||
|
<value>${test.blobstore.uri}</value>
|
||
|
</property>
|
||
|
</systemProperties>
|
||
|
<includes>
|
||
|
<include>**/*TestCase.java</include>
|
||
|
</includes>
|
||
|
<excludes>
|
||
|
<exclude>none</exclude>
|
||
|
</excludes>
|
||
|
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
</project>
|