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

Commit a7757cc

Browse files
fergalmonaghanptnplanet
authored andcommitted
Add pom and .gitignore (PR #9)
Project now mvn installs out of the box
1 parent 8790fc5 commit a7757cc

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Binary files
22
*.class
33

4+
# Maven files
5+
target/
6+
47
# Eclipse files
58
.classpath
69
.project
10+
11+
# IntelliJ files
12+
.idea/
13+
*.iml

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.github.ptnplanet</groupId>
8+
<artifactId>java-naive-bayes-classifier</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<dependencies>
12+
<dependency>
13+
<groupId>junit</groupId>
14+
<artifactId>junit</artifactId>
15+
<version>4.12</version>
16+
</dependency>
17+
</dependencies>
18+
</project>

0 commit comments

Comments
 (0)