Download pmd-3.1.jar file

Introduction

You can download pmd-3.1.jar in this page.

License

MIT license

Type List

pmd-3.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/annotations/hudson.Extension
META-INF/exposed.stapler-beans
META-INF/maven/org.jvnet.hudson.plugins/pmd/pom.properties
META-INF/maven/org.jvnet.hudson.plugins/pmd/pom.xml
META-INF/services/hudson.Plugin
hudson.plugins.pmd.MavenPmdResultAction.class
hudson.plugins.pmd.Messages.class
hudson.plugins.pmd.PmdDescriptor.class
hudson.plugins.pmd.PmdHealthDescriptor.class
hudson.plugins.pmd.PmdMavenResult.class
hudson.plugins.pmd.PmdPlugin.class
hudson.plugins.pmd.PmdProjectAction.class
hudson.plugins.pmd.PmdPublisher.class
hudson.plugins.pmd.PmdReporter.class
hudson.plugins.pmd.PmdReporterDescriptor.class
hudson.plugins.pmd.PmdResult.class
hudson.plugins.pmd.PmdResultAction.class
hudson.plugins.pmd.PmdResultBuilder.class
hudson.plugins.pmd.ResultSummary.class
hudson.plugins.pmd.parser.Bug.class
hudson.plugins.pmd.parser.File.class
hudson.plugins.pmd.parser.Pmd.class
hudson.plugins.pmd.parser.PmdMessages.class
hudson.plugins.pmd.parser.PmdParser.class
hudson.plugins.pmd.parser.Violation.class
hudson/plugins/pmd/Messages.properties
hudson/plugins/pmd/Messages_de.properties
hudson/plugins/pmd/Messages_fr.properties
hudson/plugins/pmd/Messages_ja.properties
hudson/plugins/pmd/PmdPublisher.stapler
hudson/plugins/pmd/PmdPublisher/config.jelly
hudson/plugins/pmd/PmdPublisher/config.properties
hudson/plugins/pmd/PmdPublisher/config_de.properties
hudson/plugins/pmd/PmdPublisher/config_ja.properties
hudson/plugins/pmd/PmdPublisher/global.jelly
hudson/plugins/pmd/PmdReporter.stapler
hudson/plugins/pmd/PmdReporter/config.jelly
hudson/plugins/pmd/PmdReporter/global.jelly
hudson/plugins/pmd/PmdResult/index.jelly
hudson/plugins/pmd/PmdResult/index_de.properties
hudson/plugins/pmd/PmdResult/index_ja.properties
hudson/plugins/pmd/PmdResultAction/summary.jelly
hudson/plugins/pmd/PmdResultAction/summary.properties
hudson/plugins/pmd/PmdResultAction/summary_de.properties
hudson/plugins/pmd/PmdResultAction/summary_ja.properties
index.jelly

Pom

pmd-3.1.pom file content.

<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>pmd</artifactId>
  <packaging>hpi</packaging>
  <name>Hudson PMD Plug-in</name>
  <version>3.1</version>
  <url>http://wiki.hudson-ci.org/display/HUDSON/PMD+Plugin</url>
  <description>This plug-in generates the trend report for PMD, 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>BSD license</name>
      <comments>The PMD images are Copyright (c) 2002-2005,
        InfoEther, Inc. All rights reserved.</comments>
    </license>
    <license>
      <name>BSD license</name>
      <comments>All YUI source code is under the BSD license.</comments>
    </license>
  </licenses>

  <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>pmd</groupId>
      <artifactId>pmd</artifactId>
      <version>4.2.4</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.6</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.mockito</groupId>
    	<artifactId>mockito-all</artifactId>
    	<version>1.6</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/pmd-3.1</connection>
    <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/pmd-3.1</developerConnection>
    <url>https://hudson.dev.java.net/source/browse/hudson/tags/pmd-3.1</url>
  </scm>
</project>

POM Entry

<dependency>
   <groupId>org.jvnet.hudson.plugins</groupId>
   <artifactId>pmd</artifactId>
   <version>3.1</version>
</dependency>

Download

If you think the following pmd-3.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download pmd-3.1.jar file




PreviousNext

Related