Hudson Warnings Plug-in.
This plug-in reads the compiler warnings from the console log file and generates a trend report..
Here is the list of declaration for warnings. 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>warnings</artifactId> <version>1.0</version> </dependency>
If you think this Maven repository POM file listing for warnings is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:MIT licenseName:LGPL.
The warnings-1.0 has 7 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 |
---|---|---|
Data Structure | commons-lang 2.3 Commons.Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 132 |
Testing Coding Style | annotations 1.0.0 Annotation supports the FindBugs tool | 34 |
JUnit | junit 4.3.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. | 155 |
Network | easymock 2.3 EasyMock provides Mock Objects for interfaces in JUnit tests by generating them on the fly using Java's proxy mechanism | 130 |
Testing Mock | easymockclassextension 2.3 The EasyMock Class Extension allows to generate Mock Objects for classes | 78 |
The following plugins are used in the warnings-1.0.jar
The following packages are defined in the warnings-1.0.jar
hudson.plugins.warnings hudson.plugins.warnings.parser hudson.plugins.warnings.util hudson.plugins.warnings.util.model
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.213</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>warnings</artifactId> <packaging>hpi</packaging> <name>Hudson Warnings Plug-in</name> <version>1.0</version> <url>http://hudson.gotdns.com/wiki/display/HUDSON/Warnings+Plugin</url> <description>This plug-in reads the compiler warnings from the console log file and generates a trend report.</description> <licenses> <license> <name>MIT license</name> <comments>All source code is under the MIT license.</comments> </license> <license> <name>LGPL</name> <comments>All icons are made by Carlitus (Carles Carbonell Bernado) and are under the LGPL.</comments> </license> </licenses> <dependencies> <dependency> <groupId>de.java2html</groupId> <artifactId>java2html</artifactId> <version>5.0</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>findbugs</groupId> <artifactId>annotations</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.3.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>2.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymockclassextension</artifactId> <version>2.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jvnet.localizer</groupId> <artifactId>localizer</artifactId> <version>1.5</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.kohsuke.stapler</groupId> <artifactId>maven-stapler-plugin</artifactId> <extensions>true</extensions> </plugin> <plugin> <groupId>org.jvnet.hudson.tools</groupId> <artifactId>maven-hpi-plugin</artifactId> <configuration> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </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>4.3</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/warnings-1.0</connection> <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/warnings-1.0</developerConnection> <url>https://hudson.dev.java.net/source/browse/hudson/hudson/plugins/warnings/tags/warnings-1.0</url> </scm> </project>