forked from etiennestuder/gradle-rocker-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
78 lines (63 loc) · 2.39 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import org.gradle.util.GradleVersion
import static java.lang.Integer.parseInt
plugins {
id 'nu.studer.plugindev' version '4.1'
id 'com.gradle.plugin-publish' version '0.21.0'
id 'org.nosphere.gradle.github.actions' version '1.3.2'
id 'groovy'
}
group = 'nu.studer'
version = '3.0.5-DEV'
dependencies {
testImplementation 'org.spockframework:spock-core:2.2-groovy-3.0'
}
tasks.withType(AbstractCompile).configureEach {
options.compilerArgs <<
"-Werror" <<
"-Xlint:all"
}
tasks.withType(JavaCompile).configureEach {
javaCompiler.set(javaToolchains.compilerFor { spec ->
spec.languageVersion.set(JavaLanguageVersion.of(8))
buildScan.value(identityPath.path + "#jvmVersion", spec.languageVersion.get().asInt() as String)
} as Provider<? extends JavaCompiler>)
}
tasks.withType(Test).configureEach {
maxParallelForks = 1 // there is currently only a single test class
useJUnitPlatform()
String testJavaRuntimeVersion = findProperty('testJavaRuntimeVersion') ?: '8'
String testGradleVersion = findProperty('testGradleVersion') ?: GradleVersion.current().version
javaLauncher.set(javaToolchains.launcherFor { spec ->
spec.languageVersion.set(JavaLanguageVersion.of(testJavaRuntimeVersion))
buildScan.value(identityPath.path + "#jvmVersion", testJavaRuntimeVersion)
} as Provider<? extends JavaLauncher>)
systemProperty 'testContext.gradleVersion', testGradleVersion
buildScan.value(identityPath.path + "#gradleVersion", testGradleVersion)
def incompatibleJavaVsGradleVersions = parseInt(testJavaRuntimeVersion) >= 16 && parseInt(testGradleVersion.substring(0, testGradleVersion.indexOf('.'))) < 7
if (incompatibleJavaVsGradleVersions) {
enabled = false
}
}
gradlePlugin {
plugins {
pluginDevPlugin {
id = 'nu.studer.rocker'
implementationClass = 'nu.studer.gradle.rocker.RockerPlugin'
}
}
}
pluginBundle {
website = 'https://github.com/etiennestuder/gradle-rocker-plugin'
vcsUrl = 'https://github.com/etiennestuder/gradle-rocker-plugin'
description = 'Gradle plugin that integrates the Rocker template engine.'
tags = ['rocker']
plugins {
pluginDevPlugin {
displayName = 'gradle-rocker-plugin'
}
}
mavenCoordinates {
groupId = 'nu.studer'
artifactId = 'gradle-rocker-plugin'
}
}