File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 99 ssh_known_hosts :
1010 - 47.93.9.236:22008
1111skip_build :
12- - README.md
12+ - README.md:
1313- LICENSE
1414deploy :
1515 provider : script
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ apply plugin: 'com.google.protobuf'
66apply plugin : ' application'
77apply plugin : ' checkstyle'
88apply plugin : ' com.github.johnrengelman.shadow'
9+ apply plugin : " jacoco"
10+
911
1012sourceCompatibility = 1.8
1113[compileJava, compileTestJava]* . options* . encoding = ' UTF-8'
@@ -33,6 +35,11 @@ def versions = [
3335 checkstyle : ' 8.7' ,
3436]
3537
38+ jacoco {
39+ toolVersion = " 0.8.1"
40+ }
41+
42+
3643configurations {
3744 checkstyleConfig
3845
@@ -215,6 +222,10 @@ test {
215222 testLogging {
216223 exceptionFormat = ' full'
217224 }
225+ jacoco {
226+ append = false
227+ destinationFile = file(" $buildDir /jacoco/jacocoTest.exec" )
228+ }
218229}
219230
220231task stest (type :Test ){
You can’t perform that action at this time.
0 commit comments