| 组织ID: |
org.jvnet.hudson.plugins |
| 项目ID: |
checkstyle |
| 版本: |
3.1 |
| 最后修改时间: |
2019-10-23 22:40:25 |
| 包类型: |
jar |
| 标题: |
Hudson Checkstyle Plug-in |
| 描述: |
This plug-in generates the trend report for
Checkstyle, an open source static code analysis program. |
| 相关URL: |
http://wiki.hudson-ci.org/display/HUDSON/Checkstyle+Plugin |
| 大小: |
92.18KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>checkstyle</artifactId>
<version>3.1</version>
</dependency>
|
| Gradle引入代码: |
org.jvnet.hudson.plugins:checkstyle:3.1
|
| 下载Jar包: |
|
| POM文件内容: |
<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.337</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>checkstyle</artifactId>
<packaging>hpi</packaging>
<name>Hudson Checkstyle Plug-in</name>
<version>3.1</version>
<url>http://wiki.hudson-ci.org/display/HUDSON/Checkstyle+Plugin</url>
<description>This plug-in generates the trend report for
Checkstyle, an open source static code analysis program.</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>
<developers>
<developer>
<name>Ulli Hafner</name>
<id>drulli</id>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>analysis-core</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>analysis-test</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jvnet.hudson.main</groupId>
<artifactId>maven-plugin</artifactId>
</dependency>
<dependency>
<groupId>de.java2html</groupId>
<artifactId>java2html</artifactId>
<version>5.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.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>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.7</version>
<scope>test</scope>
</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>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/checkstyle-3.1</connection>
<developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/checkstyle-3.1</developerConnection>
<url>https://hudson.dev.java.net/source/browse/hudson/tags/checkstyle-3.1</url>
</scm>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
index.jelly
hudson.plugins.checkstyle.CheckStyleReporterDescriptor.class
hudson.plugins.checkstyle.Messages.class
hudson/plugins/checkstyle/rules/config_sizes.xml
hudson/plugins/checkstyle/rules/config_reporting.xml
hudson/plugins/checkstyle/rules/config_naming.xml
hudson/plugins/checkstyle/rules/config_misc.xml
hudson.plugins.checkstyle.rules.Rule.class
hudson/plugins/checkstyle/rules/config_modifier.xml
hudson.plugins.checkstyle.rules.TopicRule.class
hudson/plugins/checkstyle/rules/config_coding.xml
hudson/plugins/checkstyle/rules/config_duplicates.xml
hudson/plugins/checkstyle/rules/config_whitespace.xml
hudson/plugins/checkstyle/rules/config_metrics.xml
hudson.plugins.checkstyle.rules.CheckStyleRules.class
hudson/plugins/checkstyle/rules/config_javadoc.xml
hudson/plugins/checkstyle/rules/config_imports.xml
hudson/plugins/checkstyle/rules/config_j2ee.xml
hudson/plugins/checkstyle/rules/config_design.xml
hudson/plugins/checkstyle/rules/config_header.xml
hudson.plugins.checkstyle.rules.Topic.class
hudson/plugins/checkstyle/rules/config_blocks.xml
hudson.plugins.checkstyle.parser.Error.class
hudson.plugins.checkstyle.parser.CheckStyle.class
hudson.plugins.checkstyle.parser.File.class
hudson.plugins.checkstyle.parser.CheckStyleParser.class
hudson.plugins.checkstyle.parser.Warning.class
hudson.plugins.checkstyle.ResultSummary.class
hudson.plugins.checkstyle.CheckStylePlugin.class
hudson.plugins.checkstyle.CheckStyleProjectAction.class
hudson.plugins.checkstyle.CheckStyleMavenResult.class
hudson/plugins/checkstyle/Messages.properties
hudson/plugins/checkstyle/CheckStylePublisher.stapler
hudson/plugins/checkstyle/Messages_fr.properties
hudson/plugins/checkstyle/CheckStyleReporter.stapler
hudson/plugins/checkstyle/CheckStyleResult/index.jelly
hudson/plugins/checkstyle/CheckStyleResult/index_de.properties
hudson/plugins/checkstyle/CheckStyleResult/index_ja.properties
hudson/plugins/checkstyle/Messages_de.properties
hudson.plugins.checkstyle.CheckStylePublisher.class
hudson.plugins.checkstyle.MavenCheckStyleResultAction.class
hudson.plugins.checkstyle.CheckStyleResult.class
hudson/plugins/checkstyle/CheckStylePublisher/config_de.properties
hudson/plugins/checkstyle/CheckStylePublisher/config_ja.properties
hudson/plugins/checkstyle/CheckStylePublisher/global.jelly
hudson/plugins/checkstyle/CheckStylePublisher/config.jelly
hudson/plugins/checkstyle/CheckStylePublisher/config.properties
hudson.plugins.checkstyle.CheckStyleResultAction.class
hudson.plugins.checkstyle.CheckStyleDescriptor.class
hudson/plugins/checkstyle/CheckStyleReporter/global.jelly
hudson/plugins/checkstyle/CheckStyleReporter/config.jelly
hudson.plugins.checkstyle.CheckStyleHealthDescriptor.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
analysis-core-1.1.jar
/org.jvnet.hudson.plugins/analysis-core/1.1
查看analysis-core所有版本文件
analysis-test-1.0.jar
/org.jvnet.hudson.plugins/analysis-test/1.0
查看analysis-test所有版本文件
java2html-5.0.jar
/de.java2html/java2html/5.0
查看java2html所有版本文件
annotations-1.0.0.jar
/findbugs/annotations/1.0.0
查看annotations所有版本文件
junit-4.6.jar
/junit/junit/4.6
查看junit所有版本文件
easymock-2.3.jar
/org.easymock/easymock/2.3
查看easymock所有版本文件
easymockclassextension-2.3.jar
/org.easymock/easymockclassextension/2.3
查看easymockclassextension所有版本文件
xercesImpl-2.8.1.jar
/xerces/xercesImpl/2.8.1
查看xercesImpl所有版本文件
mockito-all-1.7.jar
/org.mockito/mockito-all/1.7
查看mockito-all所有版本文件
|