2009-05-20 17:25:11 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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.
|
2010-01-01 12:56:29 -05:00
|
|
|
|
|
|
|
-->
|
2009-06-30 13:17:16 -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-05 15:42:34 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-05-20 17:25:11 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.jclouds</groupId>
|
2011-01-05 15:42:34 -05:00
|
|
|
<artifactId>jclouds-project</artifactId>
|
2012-02-04 14:06:07 -05:00
|
|
|
<version>1.5.0-SNAPSHOT</version>
|
2011-01-06 19:48:51 -05:00
|
|
|
<relativePath>../../project/pom.xml</relativePath>
|
2009-05-20 17:25:11 -04:00
|
|
|
</parent>
|
2011-01-06 19:48:51 -05:00
|
|
|
<groupId>org.jclouds.common</groupId>
|
|
|
|
<artifactId>aws-common</artifactId>
|
2011-01-05 15:42:34 -05:00
|
|
|
<name>jclouds Amazon AWS Components Core</name>
|
|
|
|
<description>jclouds Core components to access Amazon AWS</description>
|
2011-05-15 15:08:53 -04:00
|
|
|
<packaging>bundle</packaging>
|
|
|
|
|
2009-05-20 17:25:11 -04:00
|
|
|
<dependencies>
|
2010-01-18 17:56:58 -05:00
|
|
|
<dependency>
|
2011-01-06 19:48:51 -05:00
|
|
|
<groupId>org.jclouds</groupId>
|
2010-01-18 17:56:58 -05:00
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2010-01-10 19:08:04 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-01-06 19:48:51 -05:00
|
|
|
<groupId>org.jclouds</groupId>
|
2011-01-05 15:42:34 -05:00
|
|
|
<artifactId>jclouds-core</artifactId>
|
2011-01-01 14:28:52 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-05-20 17:25:11 -04:00
|
|
|
</dependencies>
|
2010-09-19 16:30:11 -04:00
|
|
|
|
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>
|
2012-02-16 17:49:39 -05:00
|
|
|
<Export-Package>org.jclouds.aws*;version="${project.version}"</Export-Package>
|
|
|
|
<Import-Package>org.jclouds*;version="${project.version}",*</Import-Package>
|
2011-05-15 15:08:53 -04:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2009-05-20 17:25:11 -04:00
|
|
|
</project>
|