Maven Repository - POM file for Testing analysis-test 1.4 1.4

Summary

Hudson Analysis Test Utilities.

This plug-in provides test utilities for the static code analysis plug-ins..

Declaration

Here is the list of declaration for analysis-test. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.jvnet.hudson.plugins</groupId>
   <artifactId>analysis-test</artifactId>
   <version>1.4</version>
</dependency>

If you think this Maven repository POM file listing for analysis-test is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The analysis-test-1.4 has 3 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
JUnitjunit 4.7
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.
272
Testing Mockmockito-all 1.8.2
Mock objects library for java
36




Packages

The following packages are defined in the analysis-test-1.4.jar

hudson.plugins.analysis.test

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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.jvnet.hudson.plugins</groupId>
    <artifactId>analysis-pom</artifactId>
    <version>1.14</version>
    <relativePath>../analysis-pom/pom.xml</relativePath>
  </parent>

  <artifactId>analysis-test</artifactId>
  <packaging>jar</packaging>
  <name>Hudson Analysis Test Utilities</name>
  <version>1.4</version>
  <description>This plug-in provides test utilities for the static code analysis plug-ins.</description>

  <dependencies>
    <dependency>
      <groupId>org.jvnet.hudson.plugins</groupId>
      <artifactId>analysis-core</artifactId>
    <version>1.14</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.7</version>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.8.2</version>
    </dependency>
  </dependencies>

  <scm>
    <connection>scm:svn:https://guest@svn.dev.java.net/svn/hudson/tags/analysis-test-1.4</connection>
    <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/analysis-test-1.4</developerConnection>
    <url>https://hudson.dev.java.net/source/browse/hudson/tags/analysis-test-1.4</url>
  </scm>

  <repositories>
    <repository>
      <id>java.net2</id>
      <url>http://download.java.net/maven/2/</url>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
  </repositories>

</project>