8000 update gradle to run tests · srivtx/Leetcode@bfc525e · GitHub
[go: up one dir, main page]

Skip to content

Commit bfc525e

Browse files
update gradle to run tests
1 parent 1b8c127 commit bfc525e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ checkstyle {
1212
configFile = file("${rootDir}/fishercoder_checkstyle.xml")
1313
}
1414

15+
sourceSets {
16+
main {
17+
java {
18+
srcDir 'src/fishercoder'
19+
}
20+
}
21+
}
22+
1523
description = """"""
1624

1725
sourceCompatibility = 1.8
@@ -26,7 +34,7 @@ dependencies {
2634
compile 'com.google.code.gson:gson:2.8.0'
2735
compile 'junit:junit:4.13'
2836
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.0'
29-
testCompile group: 'junit', name: 'junit', version:'4.13'
37+
testCompile "junit:junit:4.13.1"
3038
testCompile("org.assertj:assertj-core:3.11.1")
3139

3240
compileOnly 'org.projectlombok:lombok:1.18.12'

0 commit comments

Comments
 (0)
0