Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e8ade59

Browse files
committedAug 21, 2017
checkstyle fix
1 parent b468b00 commit e8ade59

Some content is hidden

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

45 files changed

+378
-350
lines changed
 

‎.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.gradle/
2+
gradle/
3+
gradlew
4+
gradlew.bat
5+

‎build.gradle

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
apply plugin: 'java'
2+
apply plugin: 'maven'
3+
apply plugin: 'checkstyle'
4+
5+
group = 'com.fishercoder'
6+
version = '1.0-SNAPSHOT'
7+
8+
checkstyle {
9+
//include ( '**/*.java')
10+
configFile = file("${rootDir}/fishercoder_codestyle.xml")
11+
}
12+
13+
description = """"""
14+
15+
sourceCompatibility = 1.8
16+
targetCompatibility = 1.8
17+
18+
19+
20+
repositories {
21+
22+
maven { url "http://repo.maven.apache.org/maven2" }
23+
}
24+
dependencies {
25+
testCompile group: 'junit', name: 'junit', version:'4.12'
26+
}

0 commit comments

Comments
 (0)
Please sign in to comment.