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

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.0</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.

License

Name:MIT license.





Depends on

The analysis-test-1.0 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
Testinganalysis-core 1.0
This plug-in provides utilities for the static code analysis plug-ins.
6
Testing Coding Styleannotations 1.0.0
Annotation supports the FindBugs tool
34
JUnitjunit 4.6
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.
70
Testing Mockmockito-all 1.7
Mock objects library for java
31

Plugin

The following plugins are used in the analysis-test-1.0.jar

  1. findbugs-maven-plugin
  2. maven-checkstyle-plugin
  3. maven-compiler-plugin
  4. maven-pmd-plugin




Packages

The following packages are defined in the analysis-test-1.0.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>plugin</artifactId>
    <version>1.335</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

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

  <licenses>
    <license>
      <name>MIT license</name>
      <comments>All source code is under the MIT license.</comments>
    </license>
  </licenses>

  

  <dependencies>
    <dependency>
      <groupId>org.jvnet.hudson.plugins</groupId>
      <artifactId>analysis-core</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>findbugs</groupId>
      <artifactId>annotations</artifactId>
      <version>1.0.0</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.6</version>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.7</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <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>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-pmd-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <rulesets>
            <ruleset>${project.artifactId}/.ruleset</ruleset>
          </rulesets>
          <targetJdk>1.5</targetJdk>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <version>1.2</version>
        <configuration>
          <xmlOutput>true</xmlOutput>
          <findbugsXmlOutput>true</findbugsXmlOutput>
          <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
          <threshold>Low</threshold>
          <effort>Max</effort>
          <debug>false</debug>
          <relaxed>false</relaxed>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-checkstyle-plugin</artifactId>
        <version>2.1</version>
        <configuration>
          <configLocation>${project.artifactId}/checkstyle-configuration.xml
          </configLocation>
        </configuration>
      </plugin>
    </plugins>
  </reporting>

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