-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (40 loc) · 1020 Bytes
/
build.gradle
File metadata and controls
45 lines (40 loc) · 1020 Bytes
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
/*
* Copyright 2026 Hewlett Packard Enterprise Development LP
*
* SPDX-License-Identifier: BSD-2-Clause-Patent
*/
plugins {
id 'groovy'
id 'com.diffplug.spotless' version 'latest.release'
}
repositories {
mavenCentral()
}
dependencies {
implementation localGroovy()
testImplementation localGroovy()
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.0'
}
spotless {
groovy {
target 'src/test/**/*.groovy'
importOrder()
endWithNewline()
greclipse().configFile(rootProject.file('greclipse.properties'))
}
groovyGradle {
target '*.gradle'
endWithNewline()
greclipse().configFile(rootProject.file('greclipse.properties'))
}
}
test {
useJUnitPlatform()
testLogging {
events 'passed', 'skipped', 'failed', 'started'
exceptionFormat = 'full'
showStandardStreams = true
}
outputs.upToDateWhen { false }
}