plot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>plot</artifactId>
<version>1.4</version>
</dependency><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.386</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>plot</artifactId>
<packaging>hpi</packaging>
<name>Plot plugin</name>
<version>1.4</version>
<url>http://wiki.hudson-ci.org/display/HUDSON/Plot+Plugin</url>
<developers>
<developer>
<id>nidaley</id>
<name>Nigel Daley</name>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>1.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- tell mvn eclipse:eclipse to leave out xml-apis.
(xml-apis.jar has an old version of the DOM.
Eclipse tends to get the classpath order wrong)
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<excludes>
<exclude>xml-apis:xml-apis</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:svn:https://guest@svn.dev.java.net/svn/hudson/tags/plot-1.4</connection>
<developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/plot-1.4</developerConnection>
<url>https://hudson.dev.java.net/source/browse/hudson/tags/plot-1.4</url>
</scm>
</project>