![Martin Paulo](/assets/img/avatar_default.png)
Added the maven pom sample and descriptive text required by jclouds. Change-Id: Ifb3569efb3e8de801dbb07553e67c186ec22c4f1
48 lines
1.6 KiB
XML
48 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>openstack.demo.app</groupId>
|
|
<artifactId>faafo_infrastructure</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
<jclouds.version>1.9.2</jclouds.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- the jclouds code -->
|
|
<dependency>
|
|
<groupId>org.apache.jclouds</groupId>
|
|
<artifactId>jclouds-all</artifactId>
|
|
<version>${jclouds.version}</version>
|
|
</dependency>
|
|
<!-- Some of the examples introduce the logging module -->
|
|
<dependency>
|
|
<groupId>org.apache.jclouds.driver</groupId>
|
|
<artifactId>jclouds-slf4j</artifactId>
|
|
<version>${jclouds.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>1.0.13</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.3</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |