gnuplot-util
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>edu.isi.vista</groupId>
<artifactId>gnuplot-util</artifactId>
<version>8.3.0</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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>common-all-open</artifactId>
<groupId>edu.isi.vista</groupId>
<version>8.3.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>gnuplot-util</artifactId>
<version>8.3.0</version>
<packaging>jar</packaging>
<name>GNUPlot Utilities</name>
<url>http://www.isi.edu/</url>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<configuration>
<programs>
<program>
<mainClass>edu.isi.nlp.gnuplot.GnuPlotRenderer</mainClass>
<name>GnuPlotRenderer</name>
</program>
<program>
<id>graphRunJobsDependencies</id>
<mainClass>edu.isi.vista.runjobs.GraphRunJobsDependencies</mainClass>
</program>
</programs>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>edu.isi.vista</groupId>
<artifactId>common-core-open</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
</dependency>
<!-- for Guice utilities. These are optional and will not be propagated to dependencies
(since not everything uses Guice. If you want to use the Guice utilities in your program,
you need to add these dependencies to that project's POM -->
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-multibindings</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>