Hudson Analysis Test Utilities.
This plug-in provides test utilities for the static code analysis plug-ins..
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.3</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.
The analysis-test-1.3 has 3 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 | analysis-core 1.5 This plug-in provides utilities for the static code analysis plug-ins. | 5 |
JUnit | junit 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 Mock | mockito-all 1.8.2 Mock objects library for java | 36 |
The following table lists the most popular artifacts which are depending on analysis-test-1.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Library | tasks 4.4 This plug-in scans the workspace files for open tasks and generates a trend report. | 5 |
Parser | warnings 3.4 This plug-in reads the compiler warnings from the console log file and generates a trend report. | 5 |
The following packages are defined in the analysis-test-1.3.jar
hudson.plugins.analysis.test
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.2</version> <relativePath>../analysis-pom/pom.xml</relativePath> </parent> <artifactId>analysis-test</artifactId> <packaging>jar</packaging> <name>Hudson Analysis Test Utilities</name> <version>1.3</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.5</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.3</connection> <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/analysis-test-1.3</developerConnection> <url>https://hudson.dev.java.net/source/browse/hudson/tags/analysis-test-1.3</url> </scm> </project>