plot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>plot</artifactId>
<version>1.6-h-1</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.eclipse.hudson.plugins</groupId>
<artifactId>hudson-plugin-parent</artifactId>
<version>3.0.0</version>
</parent>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>plot</artifactId>
<packaging>hpi</packaging>
<name>Plot plugin</name>
<version>1.6-h-1</version>
<url>http://wiki.hudson-ci.org/display/HUDSON/Plot+Plugin</url>
<properties>
<hudsonTags>report</hudsonTags>
</properties>
<licenses>
<license>
<name>The MIT license</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>schristou88</id>
<name>Steven Christou</name>
<email>schristou88@gmail.com</email>
<roles>
<role>
Maintainer
</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Nigel Daley</name>
<roles>
<role>
Original Developer
</role>
</roles>
</contributor>
</contributors>
<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>
<dependency>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>jfreechart-plugin</artifactId>
<version>1.4</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:git:git://github.com/hudson3-plugins/plot-plugin.git</connection>
<developerConnection>scm:git:git@github.com:hudson3-plugins/plot-plugin.git</developerConnection>
<url>https://github.com/hudson3-plugins/plot-plugin</url>
</scm>
</project>