Maven Repository - POM file for Testing dasein-cloud-test 2013.07.1 2013.07.1

Summary

dasein-cloud-test.

Unit tests for testing implementations of the Dasein Cloud API..

Declaration

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.

License

Name:Apache License 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.html.





Depends on

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.

CategoryArtifactDepended By Count
Librarydasein-util 2013.02
Utilities for writing Java applications
8
JUnitjunit 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
Loglog4j 1.2.17
Apache Log4j 1.2
440

Plugin

The following plugins are used in the dasein-cloud-test-2013.07.1.jar

  1. maven-compiler-plugin
  2. maven-dependency-plugin
  3. maven-javadoc-plugin
  4. maven-license-plugin
  5. maven-release-plugin
  6. maven-source-plugin




Packages

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

POM File Source

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>