Maven Repository - POM file for Library analysis-core 1.42-h-1 1.42-h-1

Summary

Static Analysis Utilities.

This plug-in provides utilities for the static code analysis plug-ins..

Declaration

Here is the list of declaration for analysis-core. 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-core</artifactId>
   <version>1.42-h-1</version>
</dependency>

If you think this Maven repository POM file listing for analysis-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:MIT licenseName:BSD license.





Plugin

The following plugins are used in the analysis-core-1.42-h-1.jar

  1. maven-pmd-plugin

Packages

The following packages are defined in the analysis-core-1.42-h-1.jar

hudson.plugins.analysis
hudson.plugins.analysis.core
hudson.plugins.analysis.dashboard
hudson.plugins.analysis.graph
hudson.plugins.analysis.tokens
hudson.plugins.analysis.util
hudson.plugins.analysis.util.model
hudson.plugins.analysis.views




POM File Source

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>

    <!-- Forked from Jenkins analysis-core-plugin 1.42-SNAPSHOT 
    
         Change groupId to org.eclipse.hudson.plugins.
         Work around jfreechart-plugin incompatibility (code change).
    -->
    
    <parent>
      <groupId>org.hudsonci.plugins</groupId>
      <artifactId>analysis-pom</artifactId>
      <version>3.0.0-M3</version>
      <relativePath>../analysis-pom/pom.xml</relativePath>
    </parent>

    <groupId>org.hudsonci.plugins</groupId>
    <artifactId>analysis-core</artifactId>
    <packaging>hpi</packaging>
    <name>Static Analysis Utilities</name>
    <version>1.42-h-1</version>
    <description>This plug-in provides utilities for the static code analysis plug-ins.</description>

    <properties>
      <hudsonTags>misc</hudsonTags>
    </properties>

    <url>http://wiki.hudson-ci.org/display/HUDSON/Static+Code+Analysis+Plug-ins</url>
  
    <licenses>
        <license>
            <name>MIT license</name>
            <comments>All source code is under the MIT license.</comments>
        </license>
        <license>
            <name>BSD license</name>
            <comments>All YUI source code is under the BSD license.</comments>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:git://github.com/hudson3-plugins/${project.artifactId}-plugin.git</connection>
        <developerConnection>scm:git:git@github.com:hudson3-plugins/${project.artifactId}-plugin.git</developerConnection>
        <url>https://github.com/hudson3-plugins/${project.artifactId}-plugin</url>
    </scm>
  
    
  
    <dependencies>
        <dependency>
            <groupId>de.java2html</groupId>
            <artifactId>java2html</artifactId>
            <version>5.0</version>
        </dependency>
        <dependency>
            <groupId>org.hudsonci.plugins</groupId>
            <artifactId>jfreechart-plugin</artifactId>
            <version>1.4</version>
      </dependency>
  </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-pmd-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>**/HealthAware*.java</exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>