2009-12-12 18:28:02 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2009-12-24 14:50:37 -05:00
|
|
|
<!--
|
2010-01-01 12:56:29 -05:00
|
|
|
|
2011-08-16 21:14:30 -04: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
|
2010-01-01 12:56:29 -05:00
|
|
|
|
2011-08-16 21:14:30 -04:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2009-12-12 18:28:02 -05:00
|
|
|
|
2011-08-16 21:14:30 -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-01-01 12:56:29 -05:00
|
|
|
|
2009-12-24 14:50:37 -05:00
|
|
|
-->
|
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">
|
2009-12-12 18:28:02 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-project</artifactId>
|
2011-08-04 23:09:23 -04:00
|
|
|
<version>1.2.0-SNAPSHOT</version>
|
2009-12-12 18:28:02 -05:00
|
|
|
<relativePath>../project/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<artifactId>jclouds-blobstore</artifactId>
|
|
|
|
<name>jclouds blobstore core</name>
|
|
|
|
<description>jclouds components to access blobstore</description>
|
2011-05-15 15:08:53 -04:00
|
|
|
<packaging>bundle</packaging>
|
2009-12-12 18:28:02 -05:00
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:svn:http://jclouds.googlecode.com/svn/trunk/blobstore</connection>
|
|
|
|
<developerConnection>scm:svn:https://jclouds.googlecode.com/svn/trunk/blobstore</developerConnection>
|
|
|
|
<url>http://jclouds.googlecode.com/svn/trunk/blobstore</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<jclouds.blobstore.httpstream.url>http://apache.multihomed.net/maven/binaries/apache-maven-2.2.0-bin.zip</jclouds.blobstore.httpstream.url>
|
|
|
|
<jclouds.blobstore.httpstream.md5>132bcde2aeca20acb0b16c1c66b74984</jclouds.blobstore.httpstream.md5>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2011-04-09 04:09:35 -04:00
|
|
|
<version>2.8</version>
|
2009-12-12 18:28:02 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration</id>
|
|
|
|
<phase>integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<!--
|
|
|
|
note that the groups/excluded groups
|
|
|
|
don't work due to some problem in
|
|
|
|
surefire or testng. instead, we have to
|
|
|
|
exclude via file path
|
|
|
|
<groups>integration</groups>
|
|
|
|
<excludedGroups>unit,performance,live</excludedGroups>
|
|
|
|
-->
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*LiveTest.java</exclude>
|
|
|
|
<exclude>**/Base*Test.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
<includes>
|
|
|
|
<include>**/*IntegrationTest.java</include>
|
|
|
|
</includes>
|
|
|
|
<systemProperties>
|
|
|
|
<property>
|
2010-09-19 16:30:11 -04:00
|
|
|
<name>test.initializer</name>
|
2010-03-09 12:17:33 -05:00
|
|
|
<value>org.jclouds.blobstore.integration.TransientBlobStoreTestInitializer</value>
|
2009-12-12 18:28:02 -05:00
|
|
|
</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>
|
|
|
|
<configuration>
|
|
|
|
<!--
|
|
|
|
note that the groups/excluded groups don't work
|
|
|
|
due to some problem in surefire or testng.
|
|
|
|
instead, we have to exclude via file path
|
|
|
|
<groups>unit,performance</groups>
|
|
|
|
<excludedGroups>integration,live</excludedGroups>
|
|
|
|
-->
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
|
|
|
<exclude>**/*LiveTest.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-05-15 15:08:53 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
|
|
|
|
<Export-Package>org.jclouds.blobstore.*;version="${project.version}"</Export-Package>
|
|
|
|
<Import-Package>org.jclouds.*;version="${project.version}",*</Import-Package>
|
|
|
|
<Fragment-Host>jclouds-core;version="${project.version}"</Fragment-Host>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-12-24 14:50:37 -05:00
|
|
|
</plugins>
|
2010-03-04 16:03:34 -05:00
|
|
|
</build>
|
2009-12-12 18:28:02 -05:00
|
|
|
</project>
|