Hello Members,
I recently started using Maven and have a project that uses JFreeChart. This is using JCommon as a dependency. Can someone please tell me how can I instruct Maven to dowload JCommon?
I am unable to find the proper repository.
Thanks in advance for your help.
How to find JCommon with Maven?
-
- JFreeChart Project Leader
- Posts: 11734
- Joined: Fri Mar 14, 2003 10:29 am
- antibot: No, of course not.
- Contact:
Re: How to find JCommon with Maven?
If you need JCommon, use this in your pom.xml:
Code: Select all
<dependency>
<groupId>org.jfree</groupId>
<artifactId>jcommon</artifactId>
<version>1.0.24</version>
</dependency>
David Gilbert
JFreeChart Project Leader
Read my blog
Support JFree via the Github sponsorship program
JFreeChart Project Leader


-
- JFreeChart Project Leader
- Posts: 11734
- Joined: Fri Mar 14, 2003 10:29 am
- antibot: No, of course not.
- Contact:
Re: How to find JCommon with Maven?
David Gilbert
JFreeChart Project Leader
Read my blog
Support JFree via the Github sponsorship program
JFreeChart Project Leader

