Page 1 of 1

How to find JCommon with Maven?

Posted: Wed Feb 22, 2017 12:14 pm
by prietym
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.

Re: How to find JCommon with Maven?

Posted: Wed Feb 22, 2017 6:30 pm
by david.gilbert
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>

Re: How to find JCommon with Maven?

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