How do I use Kumo Java Word Cloud?

I'm a Java hobbyist and I don't know how to use Kumo wordcloud.

I downloaded the source from GitHub

How do I import it into a project from my source? How do I try examples?

Using Eclipse IDE (Mars) with JDK 1.8

https://github.com/kennycason/kumo

+3


source to share


1 answer


In general, I would recommend using maven to import libraries. If your project is a Maven project, you can simply add the Kumo dependency with:

<dependency>
    <groupId>com.kennycason</groupId>
    <artifactId>kumo-core</artifactId>
    <version>1.11</version>
</dependency>

      



In case you want to edit or extend Kumo, ping me on GitHub and let me know what you need. You can also fork the project, make changes, and then submit them to PR and help improve Kumo.

Also thanks for using Kumo!

+3


source







All Articles