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>
|
2011-05-23 03:05:55 -04:00
|
|
|
<groupId>org.jclouds.provider</groupId>
|
|
|
|
<artifactId>chef-parent</artifactId>
|
2010-09-18 15:09:47 -04:00
|
|
|
<version>1.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>
|
|
|
|
<artifactId>jclouds-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>
|
|
|
|
<jclouds.chef.identity>chef-validator</jclouds.chef.identity>
|
|
|
|
<jclouds.chef.rsa-key>${user.home}/.chef/validation.pem</jclouds.chef.rsa-key>
|
|
|
|
<jclouds.chef.endpoint>http://localhost:4000</jclouds.chef.endpoint>
|
|
|
|
<jclouds.test.identity>${jclouds.chef.identity}</jclouds.test.identity>
|
|
|
|
<jclouds.test.credential>${jclouds.chef.rsa-key}</jclouds.test.credential>
|
|
|
|
<jclouds.test.endpoint>${jclouds.chef.endpoint}</jclouds.test.endpoint>
|
|
|
|
</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-03-14 00:20:22 -04:00
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-compute</artifactId>
|
|
|
|
<version>${jclouds.version}</version>
|
2010-09-18 15:09:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-02-13 14:32:24 -05:00
|
|
|
<groupId>org.jclouds.driver</groupId>
|
2010-09-18 15:09:47 -04:00
|
|
|
<artifactId>jclouds-log4j</artifactId>
|
2011-02-19 18:34:29 -05:00
|
|
|
<version>${jclouds.version}</version>
|
2010-09-18 15:09:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-03-14 00:20:22 -04:00
|
|
|
<!-- only required for Pems.java and only writing a private key file -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15</artifactId>
|
|
|
|
<version>1.44</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.14</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2010-09-18 15:09:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.danlarkin</groupId>
|
|
|
|
<artifactId>clojure-json</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2011-05-23 03:54:14 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-05-23 04:30:08 -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.chef.*;version="${project.version}",
|
|
|
|
org.jclouds.ohai.*;version="${project.version}"
|
|
|
|
</Export-Package>
|
|
|
|
<Import-Package>org.jclouds.*;version="${jclouds.version}",*</Import-Package>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-05-23 03:54:14 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2010-09-18 15:09:47 -04:00
|
|
|
</project>
|