dasein-cloud-openstack
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.dasein</groupId>
<artifactId>dasein-cloud-openstack</artifactId>
<version>2015.10.3</version>
</dependency><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>org.dasein</groupId>
<artifactId>dasein-cloud-openstack</artifactId>
<version>2015.10.3</version>
<name>Dasein Cloud Nova</name>
<description>Dasein Cloud implementation for the OpenStack APIs</description>
<url>http://github.com/dasein-cloud/dasein-cloud-openstack</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<organization>
<name>Dell, Inc.</name>
<url>http://software.dell.com</url>
</organization>
<scm>
<connection>scm:git:git://github.com/dasein-cloud/dasein-cloud-openstack.git</connection>
<developerConnection>scm:git:ssh://git@github.com/dasein-cloud/dasein-cloud-openstack.git</developerConnection>
<url>http://github.com/dasein-cloud/dasein-cloud-openstack</url>
<tag>dasein-cloud-openstack-2015.10.3</tag>
</scm>
<dependencies>
<!-- Compile -->
<dependency>
<groupId>org.dasein</groupId>
<artifactId>dasein-cloud-core</artifactId>
<version>2015.10.1</version>
<scope>compile</scope>
<optional>false</optional>
</dependency>
<dependency>
<groupId>org.dasein</groupId>
<artifactId>dasein-util</artifactId>
<version>2013.02</version>
<scope>compile</scope>
<optional>false</optional>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.2.1</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>compile</scope>
<optional>false</optional>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.dasein</groupId>
<artifactId>dasein-cloud-test</artifactId>
<version>2015.10.2</version>
<scope>test</scope>
<optional>false</optional>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
</dependency>
<dependency>
<groupId>org.jmockit</groupId>
<artifactId>jmockit</artifactId>
<version>1.19</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<executions>
<execution>
<id>javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<encoding>utf-8</encoding>
<quiet>true</quiet>
<links>
<link>http://docs.oracle.com/javase/6/docs/api/</link>
<link>http://www.dasein.org/api/dasein-cloud/</link>
<link>http://www.dasein.org/api/dasein-utils/</link>
</links>
<stylesheetfile>dasein-javadoc.css</stylesheetfile>
<footer />
</configuration>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.8.0</version>
<configuration>
<strictCheck>true</strictCheck>
<encoding>utf-8</encoding>
<aggregate>true</aggregate>
<header>src/main/etc/header.txt</header>
<mapping>
<clj>SEMICOLON_STYLE</clj>
</mapping>
<excludes>
<exclude>thirdparty/**</exclude>
<exclude>**/src/**/resources/**</exclude>
<exclude>**/LICENSE-APACHE.txt</exclude>
</excludes>
<properties>
<year>2009-2015</year>
<copyrightHolder>Dell, Inc.</copyrightHolder>
</properties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>source</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- unit tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<excludes>
<exclude>**/TestSuite.class</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<systemProperties>
<property>
<name>providerClass</name>
<value>${providerClass}</value>
</property>
<property>
<name>endpoint</name>
<value>${endpoint}</value>
</property>
<property>
<name>accountNumber</name>
<value>${accountNumber}</value>
</property>
<property>
<name>apiKeyShared</name>
<value>${apiSharedKey}</value>
</property>
<property>
<name>apiKeySecret</name>
<value>${apiSecretKey}</value>
</property>
<property>
<name>accessPublic</name>
<value>${apiSharedKey}</value>
</property>
<property>
<name>accessPrivate</name>
<value>${apiSecretKey}</value>
</property>
<property>
<name>cloudName</name>
<value>${cloudName}</value>
</property>
<property>
<name>providerName</name>
<value>${providerName}</value>
</property>
<property>
<name>regionId</name>
<value>${regionId}</value>
</property>
<property>
<name>test.machineImage</name>
<value>${test.machineImage}</value>
</property>
</systemProperties>
<excludes>
<exclude>**/TestSuite.java</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
<uniqueVersion>false</uniqueVersion>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<developers>
<developer>
<name>George Reese</name>
<id>georgereese</id>
<email>george_reese -at- dell -dot- com</email>
<organization>Enstratius</organization>
<roles>
<role>Java Developer</role>
<role>PMC</role>
</roles>
<url>http://www.enstratius.com</url>
<timezone>-6</timezone>
</developer>
<developer>
<name>Morgan Catlin</name>
<id>sylistron</id>
<email>morgan.catlin -at- valtira -dot- com</email>
<organization>Valtira</organization>
<roles>
<role>Java Developer</role>
</roles>
<url>http://www.valtira.com</url>
<timezone>-6</timezone>
</developer>
<developer>
<name>Adrian Cole</name>
<id>ferncam1</id>
<email>adrian -at- jclouds -dot- org</email>
<organization>jclouds</organization>
<roles>
<role>Java Developer</role>
<role>PMC</role>
</roles>
<url>http://www.jclouds.org</url>
<timezone>-8</timezone>
</developer>
</developers>
<!-- <profiles>
<profile>
<id>no-integration</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>-->
</project>