JFreeChart 1.0.14-SNAPSHOT available for testing

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
matinh
Posts: 483
Joined: Fri Aug 11, 2006 10:08 am
Location: Austria

JFreeChart 1.0.14-SNAPSHOT available for testing

Post by matinh » Thu Nov 03, 2011 3:39 pm

Hi all!

As some of you may have noticed, JFreeChart development is getting active again. A new version 1.0.14 is planned to be released soon.
A SNAPSHOT version from SVN is already available for beta testing from Sonatype's OSS repository. Also in the OSS Maven Repository are JavaDoc- and sources-JARs as well as MD5 sums and GPG signatures. A full ZIP and the demo will be available, once 1.0.14 has been released.

For those of you using Maven, JFreeChart can now be used by adding this dependency to your build (note the changed groupId!):

Code: Select all

<dependency>
  <groupId>org.jfree</groupId>
  <artifactId>jfreechart</artifactId>
  <version>1.0.14-SNAPSHOT</version>
</dependency>
You can add the repository by adding something like this to your ~/.m2/settings.xml:

Code: Select all

<repositories>
  <repository>
    <id>sonatype-oss-snapshots</id>
    <name>Sonatype OSS Snapshots</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  </repository>
</repositories>
Please test and report back if you find any problems that should be fixed before the actualy release.

Thanks for your help and enjoy the new version,
- martin

david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

Re: JFreeChart 1.0.14-SNAPSHOT available for testing

Post by david.gilbert » Thu Nov 03, 2011 9:16 pm

Thanks Martin!
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

Locked