dasein-cloud-test.
Unit tests for testing implementations of the Dasein Cloud API..
Here is the list of declaration for dasein-cloud-test. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.dasein</groupId> <artifactId>dasein-cloud-test</artifactId> <version>2013.07.1</version> </dependency>
If you think this Maven repository POM file listing for dasein-cloud-test is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache License 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.html.
The dasein-cloud-test-2013.07.1 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Library | dasein-util 2013.02 Utilities for writing Java applications | 8 |
JUnit | junit 4.9 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 117 |
Log | log4j 1.2.17 Apache Log4j 1.2 | 440 |
The following plugins are used in the dasein-cloud-test-2013.07.1.jar
The following packages are defined in the dasein-cloud-test-2013.07.1.jar
org.dasein.cloud.test org.dasein.cloud.test.ci org.dasein.cloud.test.cloud org.dasein.cloud.test.compute org.dasein.cloud.test.identity org.dasein.cloud.test.network org.dasein.cloud.test.platform org.dasein.cloud.test.storage
Here is the content of the POM file.
<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-test</artifactId> <version>2013.07.1</version> <packaging>jar</packaging> <name>dasein-cloud-test</name> <description>Unit tests for testing implementations of the Dasein Cloud API.</description> <inceptionYear>2009</inceptionYear> <url>http://github.com/greese/dasein-cloud-aws</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/greese/dasein-cloud-test.git</connection> <developerConnection>scm:git:ssh://git@github.com/greese/dasein-cloud-test.git</developerConnection> <url>http://github.com/greese/dasein-cloud-test</url> </scm> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>5</version> </parent> <dependencies> <dependency> <groupId>org.dasein</groupId> <artifactId>dasein-cloud-core</artifactId> <version>2013.07.0</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>junit</groupId> <artifactId>junit</artifactId> <version>4.9</version> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>compile</scope> <optional>false</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</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://java.sun.com/javase/6/docs/api/</link> <link>http://java.sun.com/javaee/6/docs/api/</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>${basedir}/src/main/etc/header.txt</header> <excludes> <exclude>thirdparty/**</exclude> <exclude>**/src/**/resources/**</exclude> <exclude>**/LICENSE-APACHE.txt</exclude> </excludes> <properties> <year>2009-2013</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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> </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> </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> </project>