MVN

se.malmin : jfreechart

Maven & Gradle

Sep 20, 2023
1.1k stars

JFreeChart · This is a fork of jfreechart. The purpose is to the build it with the Java module sytem and Java 17. This to be able to use it in building java applications with reduced runtimes. Three servlet classes have been removed as they depended on the automatic module servlet.api. No functionality has beed added. All credit to the original project. Introduzing the module system has broken the unit tests. Everything seems to work as expected though. If you stumble upon this, then it might be useful if you need to use jfreechart in a Java module application. This project will not be maintained though. It looks like jfreechart is adopting the module system and that it might be released soon. jfreechart with Java 11 and modules for java fx applications was recently released. JFreeChart is a class library, written in Java, for generating charts. Utilising the Java2D API, it supports a wide range of chart types including bar charts, pie charts, line charts, XY-plots, time series plots, Sankey charts and more.

<dependency>
    <groupId>se.malmin</groupId>
    <artifactId>jfreechart</artifactId>
    <version>1.5.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of se.malmin : jfreechart to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.5.3

All Versions

Choose a version of se.malmin : jfreechart to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.5.x
jfreechart-1.5.3

How to add a dependency to Maven

Add the following se.malmin : jfreechart maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>se.malmin</groupId>
    <artifactId>jfreechart</artifactId>
    <version>1.5.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following se.malmin : jfreechart gradle dependency to your build.gradle file:

implementation 'se.malmin:jfreechart:1.5.3'

Gradle Kotlin DSL: Add the following se.malmin : jfreechart gradle kotlin dependency to your build.gradle.kts file:

implementation("se.malmin:jfreechart:1.5.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following se.malmin : jfreechart sbt scala dependency to your build.sbt file:

libraryDependencies += "se.malmin" % "jfreechart" % "1.5.3"

Advertisement