2010-09-18 15:09:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-04-16 12:42:51 -04:00
|
|
|
<!--
|
2010-09-18 15:09:47 -04:00
|
|
|
|
2012-04-16 12:42:51 -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-09-18 15:09:47 -04:00
|
|
|
|
2012-04-16 12:42:51 -04:00
|
|
|
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-09-18 15:09:47 -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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2012-06-26 16:29:41 -04:00
|
|
|
<groupId>org.jclouds.chef</groupId>
|
2011-05-23 03:05:55 -04:00
|
|
|
<artifactId>chef-parent</artifactId>
|
2012-04-16 14:07:42 -04:00
|
|
|
<version>1.5.0-SNAPSHOT</version>
|
2011-03-14 00:20:22 -04:00
|
|
|
<relativePath>../project/pom.xml</relativePath>
|
2010-09-18 15:09:47 -04:00
|
|
|
</parent>
|
2012-06-26 16:29:41 -04:00
|
|
|
<groupId>org.jclouds.api</groupId>
|
|
|
|
<artifactId>chef</artifactId>
|
2011-05-23 04:30:08 -04:00
|
|
|
<packaging>bundle</packaging>
|
2011-03-14 00:20:22 -04:00
|
|
|
<name>JClouds Chef :: Core</name>
|
2010-09-18 15:09:47 -04:00
|
|
|
<description>jclouds components to access Chef</description>
|
|
|
|
|
|
|
|
<properties>
|
2012-06-26 16:29:41 -04:00
|
|
|
<test.chef.endpoint>http://localhost:4000</test.chef.endpoint>
|
|
|
|
<test.chef.api-version></test.chef.api-version>
|
|
|
|
<test.chef.build-version></test.chef.build-version>
|
|
|
|
<test.chef.identity>chef-validator</test.chef.identity>
|
|
|
|
<test.chef.credential>${user.home}/.chef/validation.pem</test.chef.credential>
|
|
|
|
<test.chef.validator.identity>chef-validator</test.chef.validator.identity>
|
|
|
|
<test.chef.validator.credential>${user.home}/.chef/validation.pem</test.chef.validator.credential>
|
|
|
|
<jclouds.osgi.import>
|
|
|
|
org.jclouds;version=${project.version},
|
|
|
|
org.jclouds*;version=${project.version},
|
|
|
|
*
|
|
|
|
</jclouds.osgi.import>
|
|
|
|
<jclouds.osgi.export>
|
|
|
|
org.jclouds.chef*;version=${project.version};-noimport:=true,
|
|
|
|
org.jclouds.ohai*;version=${project.version};-noimport:=true,
|
|
|
|
</jclouds.osgi.export>
|
2010-09-18 15:09:47 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2011-03-14 00:20:22 -04:00
|
|
|
<groupId>org.jclouds</groupId>
|
2010-09-18 15:09:47 -04:00
|
|
|
<artifactId>jclouds-core</artifactId>
|
2011-02-19 18:34:29 -05:00
|
|
|
<version>${jclouds.version}</version>
|
2010-09-18 15:09:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-03-14 00:20:22 -04:00
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${jclouds.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
2010-09-18 15:09:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-03-14 00:20:22 -04:00
|
|
|
<groupId>org.jclouds</groupId>
|
2010-09-18 15:09:47 -04:00
|
|
|
<artifactId>jclouds-scriptbuilder</artifactId>
|
2011-02-19 18:34:29 -05:00
|
|
|
<version>${jclouds.version}</version>
|
2010-09-18 15:09:47 -04:00
|
|
|
</dependency>
|
2011-03-14 00:20:22 -04:00
|
|
|
<!-- for transient chef provider -->
|
2010-09-18 15:09:47 -04:00
|
|
|
<dependency>
|
2011-03-14 00:20:22 -04:00
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-blobstore</artifactId>
|
2011-02-19 18:34:29 -05:00
|
|
|
<version>${jclouds.version}</version>
|
2011-03-14 00:20:22 -04:00
|
|
|
<optional>true</optional>
|
2010-09-18 15:09:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-02-13 14:32:24 -05:00
|
|
|
<groupId>org.jclouds.driver</groupId>
|
2012-06-26 16:29:41 -04:00
|
|
|
<artifactId>jclouds-slf4j</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2010-09-18 15:09:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-03-14 00:20:22 -04:00
|
|
|
<dependency>
|
2012-06-26 16:29:41 -04:00
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.0.0</version>
|
2011-03-14 00:20:22 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2010-09-18 15:09:47 -04:00
|
|
|
</dependencies>
|
2011-05-23 03:54:14 -04:00
|
|
|
|
2012-06-26 16:29:41 -04:00
|
|
|
<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>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<test.chef.endpoint>${test.chef.endpoint}</test.chef.endpoint>
|
|
|
|
<test.chef.api-version>${test.chef.api-version}</test.chef.api-version>
|
|
|
|
<test.chef.build-version>${test.chef.build-version}</test.chef.build-version>
|
|
|
|
<test.chef.identity>${test.chef.identity}</test.chef.identity>
|
|
|
|
<test.chef.validator.identity>${test.chef.validator.identity}</test.chef.validator.identity>
|
|
|
|
<test.chef.validator.credential>${test.chef.validator.credential}</test.chef.validator.credential>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2010-09-18 15:09:47 -04:00
|
|
|
</project>
|