jlinegraph/README.md

30 lines
525 B
Markdown
Raw Normal View History

2021-12-07 00:46:15 +01:00
# JLineGraph
Small library to draw line graphs in java
![.preview.png](.preview.png)
2021-12-07 01:27:22 +01:00
Add MCHV repository to your pom.xml
```xml
<repositories>
<repository>
<id>mchv</id>
<name>MCHV Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv/</url>
</repository>
</repositories>
```
Add the dependency to your pom.xml
```xml
<dependencies>
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>jlinegraph</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
```