jchart2d

Used in 52 components

Overview

Description

JChart2D is an easy to use component for displaying two- dimensional traces in a coordinate system written in Java.

Snippets

<dependency>
    <groupId>net.sf.jchart2d</groupId>
    <artifactId>jchart2d</artifactId>
    <version>3.3.2</version>
</dependency>

Maven POM File

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>net.sf.jchart2d</groupId>
  <artifactId>jchart2d</artifactId>
  <packaging>jar</packaging>
  <name>jchart2d</name>
  <version>3.3.2</version>
  <description>JChart2D is an easy to use component for displaying two- dimensional traces in a coordinate system written in Java.</description>
  <url>http://jchart2d.sourceforge.net/</url>
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  <licenses>
    <license>
      <name>GNU Library or Lesser General Public License version 2.0 (LGPLv2)</name>
      <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git://jchart2d.git.sourceforge.net/gitroot/jchart2d/jchart2d</connection>
    <url>http://jchart2d.git.sourceforge.net/</url>
  </scm>
  <developers>
    <developer>
      <id>achimwestermann</id>
      <name>Achim Westermann</name>
      <email>Achim.Westermann@gmx.de</email>
    </developer>
  </developers>
  <dependencies>
    <dependency>
      <groupId>org.apache.xmlgraphics</groupId>
      <artifactId>xmlgraphics-commons</artifactId>
      <version>1.3.1</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.jidesoft</groupId>
      <artifactId>jide-oss</artifactId>
      <version>2.4.8</version>
    </dependency>            
  </dependencies>

  <build>
    <directory>${project.basedir}/build</directory>
    <outputDirectory>${project.build.directory}/classes</outputDirectory>
    <finalName>${project.artifactId}-${project.version}</finalName>    
    <sourceDirectory>${project.basedir}/src</sourceDirectory>
    <testSourceDirectory>${project.basedir}/test</testSourceDirectory>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.1.2</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.4</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>