-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
50 lines (44 loc) · 937 Bytes
/
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
plugins {
id 'groovy'
id 'com.adarshr.test-logger' version '2.0.0'
}
group 'de.lundf'
version '0.1.0'
repositories {
mavenCentral()
jcenter()
maven {
url "https://repo.jenkins-ci.org/releases"
}
}
wrapper {
gradleVersion = '6.3'
}
sourceSets {
main {
groovy {
srcDirs = ['src']
}
}
test {
groovy {
srcDirs = ['test/groovy']
}
resources {
srcDirs = ['test/resources']
}
}
}
dependencies {
compileOnly 'org.jenkins-ci.main:jenkins-core:2.233'
compileOnly 'org.jenkins-ci.plugins:job-dsl:1.77'
implementation 'org.codehaus.groovy:groovy-all:3.0.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.1.1'
}
test {
useJUnitPlatform()
testlogger {
theme 'standard-parallel' // task level
}
}