mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-25 22:02:05 +01:00
Add coveralls
This commit is contained in:
parent
e0bc31bd43
commit
ef5ee8ed1b
1 changed files with 8 additions and 0 deletions
|
@ -10,6 +10,9 @@ buildscript {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.3.1"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
|
@ -213,6 +216,11 @@ def getGitCommit() {
|
||||||
gitCommit
|
gitCommit
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apply plugin: "com.github.kt3k.coveralls"
|
||||||
|
coveralls {
|
||||||
|
sourceDirs = files(subprojects.sourceSets.main.allSource.srcDirs).files.absolutePath
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
task jacocoRootReport(type: JacocoReport) {
|
task jacocoRootReport(type: JacocoReport) {
|
||||||
reports {
|
reports {
|
||||||
|
|
Loading…
Reference in a new issue