hatemalimam / ChartistJSF

Highly Customizable Responsive Charts for JavaServer Faces.
https://chartistjsf-showcase.herokuapp.com
Apache License 2.0
39 stars 12 forks source link

Incorrect artifactId in Maven dependency #5

Closed jepsar closed 8 years ago

jepsar commented 8 years ago

Minor issue with Maven dependency mentioned at https://github.com/hatemalimam/ChartistJSF

<dependency>
    <groupId>org.chartistjsf</groupId>
    <artifactId>chartistjsf</artifactId>
    <version>0.9</version>      
</dependency>

The dependency above does not work, it should be:

<dependency>
    <groupId>org.chartistjsf</groupId>
    <artifactId>ChartistJSF</artifactId>
    <version>0.9</version>
</dependency>
hatemalimam commented 8 years ago

Thanks