Static 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.hudsonci.plugins</groupId> <artifactId>analysis-test</artifactId> <version>1.10-h-1</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.
Name:The MIT license
URL: http://opensource.org/licenses/MIT.
The analysis-test-1.10-h-1 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 |
---|---|---|
JUnit | junit 4.8.1 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. | 1256 |
Testing Mock | mockito-all 1.8.5 Mock objects library for java | 434 |
The following packages are defined in the analysis-test-1.10-h-1.jar
hudson.plugins.analysis.test
Here is the content of the POM file.
<?xml version='1.0' encoding='UTF-8'?> <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.hudsonci.plugins</groupId> <artifactId>analysis-pom</artifactId> <version>3.0.0</version> <relativePath /> </parent> <artifactId>analysis-test</artifactId> <packaging>jar</packaging> <name>Static Analysis Test Utilities</name> <version>1.10-h-1</version> <description>This plug-in provides test utilities for the static code analysis plug-ins.</description> <dependencies> <dependency> <groupId>org.hudsonci.plugins</groupId> <artifactId>analysis-core</artifactId> <version>1.48-h-1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.8.5</version> </dependency> </dependencies> <scm> <connection>scm:git:git://github.com/hudson3-plugins/analysis-test.git</connection> <developerConnection>scm:git:git@github.com:hudson3-plugins/analysis-test.git</developerConnection> <url>https://github.com/hudson3-plugins/analysis-test</url> </scm> <groupId>org.hudsonci.plugins</groupId> <url>http://wiki.hudson-ci.org/display/HUDSON/Static+Analysis+Test+Utilities</url> <licenses> <license> <name>The MIT license</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <properties> <hudsonTags>misc</hudsonTags> </properties> </project>