SWT support

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

SWT support

Post by david.gilbert » Sat Feb 20, 2016 6:43 am

In preparation for a new release of JFreeChart, I have moved the Eclipse SWT code out into two separate projects:

https://github.com/jfree/swtgraphics2d

https://github.com/jfree/jfreechart-swt

I don't personally use SWT so these projects won't get a lot of development attention from me, but if there are people working with this code then I expect that it will now be easier for them to use these GitHub projects and the Maven artifacts that are uploaded to the Central Repository:

Code: Select all

<dependency>
  <groupId>org.jfree</groupId>
  <artifactId>swtgraphics2d</artifactId>
  <version>1.0</version>
</dependency>

Code: Select all

<dependency>
  <groupId>org.jfree</groupId>
  <artifactId>jfreechart-swt</artifactId>
  <version>1.0</version>
</dependency>
David Gilbert
JFreeChart Project Leader

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

Locked