Skip to content

Commit 50e61d4

Browse files
author
Kirill Kornyakov
committedOct 20, 2015
Initial commit
0 parents  commit 50e61d4

File tree

97 files changed

+6934
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+6934
-0
lines changed
 

‎.gitignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# General
2+
*.log
3+
.DS_Store
4+
5+
# Gradle
6+
.gradle
7+
build
8+
gradle/
9+
gradlew
10+
gradlew.bat
11+
cpd.xml
12+
13+
# IntelliJ IDEA
14+
out
15+
.idea
16+
*.iml
17+
*.ipr
18+
*.iws
19+
20+
# Eclipse
21+
.classpath
22+
.settings
23+
.project
24+
bin
25+
26+
# GWT
27+
bin/
28+
gwt-unitCache/
29+
war/
30+
*.html
31+
32+
# Mac
33+
.DS_Store

‎.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: java
2+
sudo: false
3+
jdk:
4+
- oraclejdk8
5+
script:
6+
- TERM=dumb
7+
- gradle -v
8+
- gradle check jacocoTestReport
9+
after_success:
10+
- gradle jacocoRootReport coveralls
11+
notifications:
12+
email: false

0 commit comments

Comments
 (0)