Skip to content
This repository was archived by the owner on May 7, 2021. It is now read-only.

Commit dd7e50e

Browse files
committed
Updated documentation
Added a „Maven Quick-Start“ section to the README.
1 parent a7757cc commit dd7e50e

2 files changed

Lines changed: 28 additions & 2 deletions

File tree

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@ Java Naive Bayes Classifier
33

44
Nothing special. It works and is well documented, so you should get it running without wasting too much time searching for other alternatives on the net.
55

6+
Maven Quick-Start
7+
------------------
8+
9+
This Java Naive Bayes Classifier can be installed via the jitpack repository. Make sure to add it to your buildfile first.
10+
11+
```xml
12+
<repositories>
13+
<repository>
14+
<id>jitpack.io</id>
15+
<url>https://jitpack.io</url>
16+
</repository>
17+
</repositories>
18+
```
19+
20+
Then, treat it as any other dependency.
21+
22+
```xml
23+
<dependency>
24+
<groupId>com.github.ptnplanet</groupId>
25+
<artifactId>java-naive-bayes-classifier</artifactId>
26+
<version>1.0</version>
27+
</dependency>
28+
```
29+
30+
For other build-tools (e.g. gradle), visit https://jitpack.io for configuration snippets.
31+
632
Overview
733
------------------
834

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.ptnplanet</groupId>
88
<artifactId>java-naive-bayes-classifier</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0</version>
1010

1111
<dependencies>
1212
<dependency>
@@ -15,4 +15,4 @@
1515
<version>4.12</version>
1616
</dependency>
1717
</dependencies>
18-
</project>
18+
</project>

0 commit comments

Comments
 (0)