forked from craigatk/projektor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (48 loc) · 1.24 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jlleitschuh.gradle:ktlint-gradle:10.2.1"
}
}
plugins {
id "dev.projektor.publish" version "8.0.0"
id 'com.github.psxpaul.execfork' version '0.1.15' apply false
}
projektor {
serverUrl = "https://projektorlive.herokuapp.com"
publishToken = System.getenv("PROJEKTOR_TOKEN") ?: project.findProperty('projektor_publish_token') ?: null
codeQualityReports = [fileTree(dir: ".", include: "**/build/reports/ktlint/**/*.txt")]
}
allprojects {
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
mavenCentral()
}
}
repositories {
mavenCentral()
}
tasks.withType(Test) {
testLogging {
exceptionFormat = 'full'
}
reports {
junitXml {
outputPerTestCase = true
}
}
}
tasks.withType(JacocoReport) {
dependsOn(test)
}
plugins.withType(JacocoPlugin) {
jacoco {
toolVersion = "0.8.7"
}
}
}