2010-08-31 10:51:22 -04: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
|
2010-08-31 10:51:22 -04:00
|
|
|
|
2013-05-16 23:05:20 -04:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2010-08-31 10:51:22 -04: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.
|
2010-08-31 10:51:22 -04: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">
|
2013-05-13 13:25:21 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-project</artifactId>
|
2016-11-14 19:12:59 -05:00
|
|
|
<version>2.1.0-SNAPSHOT</version>
|
2013-05-13 13:25:21 -04:00
|
|
|
<relativePath>../../project/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<groupId>org.apache.jclouds.api</groupId>
|
|
|
|
<artifactId>filesystem</artifactId>
|
2013-12-01 14:20:56 -05:00
|
|
|
<name>jclouds filesystem core</name>
|
2013-05-13 13:25:21 -04:00
|
|
|
<description>jclouds components to access filesystem</description>
|
|
|
|
<packaging>bundle</packaging>
|
2010-08-31 10:51:22 -04:00
|
|
|
|
2013-05-13 13:25:21 -04:00
|
|
|
<properties>
|
2014-10-24 22:58:11 -04:00
|
|
|
<!-- This api has been written in a manner which requires Java language level 7. -->
|
|
|
|
<maven.compile.source>1.7</maven.compile.source>
|
|
|
|
<maven.compile.target>1.7</maven.compile.target>
|
2013-05-13 13:25:21 -04:00
|
|
|
<jclouds.osgi.export>org.jclouds.filesystem*;version="${project.version}"</jclouds.osgi.export>
|
|
|
|
<jclouds.osgi.import>org.jclouds*;version="${project.version}",*</jclouds.osgi.import>
|
|
|
|
</properties>
|
2012-06-03 11:26:31 -04:00
|
|
|
|
2013-05-13 13:25:21 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-blobstore</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-blobstore</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jclouds.driver</groupId>
|
|
|
|
<artifactId>jclouds-log4j</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-12-01 12:46:13 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.auto.service</groupId>
|
|
|
|
<artifactId>auto-service</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2013-05-13 13:25:21 -04:00
|
|
|
</dependencies>
|
2010-09-01 05:35:40 -04:00
|
|
|
|
2013-05-13 13:25:21 -04:00
|
|
|
<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>
|
|
|
|
<threadCount>1</threadCount>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*LiveTest.java</exclude>
|
|
|
|
<exclude>**/Base*Test.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
<includes>
|
|
|
|
<include>**/*IntegrationTest.java</include>
|
|
|
|
</includes>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<jclouds.blobstore.httpstream.url>${jclouds.blobstore.httpstream.url}</jclouds.blobstore.httpstream.url>
|
|
|
|
<jclouds.blobstore.httpstream.md5>${jclouds.blobstore.httpstream.md5}</jclouds.blobstore.httpstream.md5>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-11-27 12:02:51 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<signature>
|
|
|
|
<groupId>org.codehaus.mojo.signature</groupId>
|
|
|
|
<artifactId>java17</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</signature>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-05-13 13:25:21 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2011-05-15 15:08:53 -04:00
|
|
|
|
2010-08-31 10:51:22 -04:00
|
|
|
</project>
|
|
|
|
|