How to find JCommon with Maven?

A discussion forum for the JCommon class library.
Locked
prietym
Posts: 1
Joined: Wed Feb 22, 2017 12:08 pm
antibot: No, of course not.
Contact:

How to find JCommon with Maven?

Post by prietym » Wed Feb 22, 2017 12:14 pm

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.
Priety
CRG Soft

david.gilbert
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?

Post by david.gilbert » Wed Feb 22, 2017 6:30 pm

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

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

david.gilbert
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?

Post by david.gilbert » Wed Feb 22, 2017 6:31 pm

David Gilbert
JFreeChart Project Leader

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

Locked