cloud-manager-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.aludratest</groupId>
<artifactId>cloud-manager-impl</artifactId>
<version>1.1.0</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>
<artifactId>cloud-manager-impl</artifactId>
<version>1.1.0</version>
<packaging>jar</packaging>
<name>AludraTest Cloud Manager Implementation</name>
<description>Default engine implementation of the AludraTest Cloud Manager.</description>
<parent>
<groupId>org.aludratest</groupId>
<artifactId>cloud-manager-parent</artifactId>
<version>1</version>
</parent>
<properties>
<cloud.manager.api.version>1.1.0</cloud.manager.api.version>
</properties>
<dependencies>
<dependency>
<groupId>org.aludratest</groupId>
<artifactId>cloud-manager-api</artifactId>
<version>${cloud.manager.api.version}</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-api</artifactId>
<version>2.2.6</version>
</dependency>
<!-- version specified in parent -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.9.1.0</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbynet</artifactId>
<version>10.9.1.0</version>
</dependency>
<!-- to pool connections to Derby -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<connection>scm:git:https://git@github.com:AludraTest/cloud-manager-impl.git</connection>
<developerConnection>scm:git:https://git@github.com/AludraTest/cloud-manager-impl.git</developerConnection>
<url>https://github.com/AludraTest/cloud-manager-impl.git</url>
<tag>cloud-manager-impl-1.1.0</tag>
</scm>
<issueManagement>
<url>https://github.com/AludraTest/cloud-manager-impl/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<site>
<!-- this is not used at all, as GitHub site-deploy is used. But site
Plugin requires this to be here to work! -->
<id>local-dummy</id>
<url>file:/./target/site-deployment</url>
</site>
</distributionManagement>
</project>