Skip to content

Commit a44513e

Browse files
committed
Initial commit
0 parents  commit a44513e

File tree

6 files changed

+828
-0
lines changed

6 files changed

+828
-0
lines changed

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
target/
2+
.idea/
3+
.classpath
4+
.project
5+
.settings/
6+
**/*.iml
7+
**/.DS_Store
8+
9+
# Compiled class file
10+
*.class
11+
12+
# Log file
13+
*.log
14+
15+
# BlueJ files
16+
*.ctxt
17+
18+
# Mobile Tools for Java (J2ME)
19+
.mtj.tmp/
20+
21+
# Package Files #
22+
*.jar
23+
*.war
24+
*.nar
25+
*.ear
26+
*.zip
27+
*.tar.gz
28+
*.rar
29+
30+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
31+
hs_err_pid*

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: java
2+
os:
3+
- linux
4+
jdk:
5+
- oraclejdk8
6+
sudo: false
7+
script: mvn clean compile assembly:assembly cobertura:cobertura
8+
after_success:
9+
- bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)