-
Notifications
You must be signed in to change notification settings - Fork 81
/
build.gradle
205 lines (170 loc) · 6.01 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
import org.siouan.frontendgradleplugin.infrastructure.gradle.RunYarn
buildscript {
dependencyLocking {
lockAllConfigurations()
}
repositories {
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath 'gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1'
classpath 'io.spring.nohttp:nohttp-gradle:0.0.11'
classpath 'io.spring.javaformat:spring-javaformat-gradle-plugin:0.0.39'
classpath 'org.siouan:frontend-jdk17:8.0.0'
constraints {
classpath('org.ow2.asm:asm:7.3.1') {
because 'Supports modern JDKs'
}
}
}
configurations.classpath.resolutionStrategy.cacheDynamicVersionsFor 0, 'minutes'
}
apply from: 'dependencies.gradle'
allprojects {
group = 'io.micrometer'
afterEvaluate { project -> println "I'm configuring $project.name with version $project.version" }
}
subprojects {
apply plugin: 'io.spring.javaformat'
apply plugin: 'java-library'
apply plugin: 'com.github.hierynomus.license'
apply plugin: 'checkstyle'
apply plugin: 'io.spring.nohttp'
java {
// It is more idiomatic to define different features for different sets of optional
// dependencies, e.g., 'dropwizard' and 'reactor'. If this library published Gradle
// metadata, Gradle users would be able to use these feature names in their dependency
// declarations instead of understanding the actual required optional dependencies.
// But we don't publish Gradle metadata yet and this may be overkill so just have a
// single feature for now to correspond to any optional dependency.
registerFeature('optional') {
usingSourceSet(sourceSets.main)
}
}
// All projects use optional annotations, but since we don't expose them downstream we would
// have to add the dependency in every project, which is tedious so just do it here.
dependencies {
// JSR-305 only used for non-required meta-annotations
optionalApi "com.google.code.findbugs:jsr305:latest.release"
checkstyle("io.spring.javaformat:spring-javaformat-checkstyle:latest.release")
}
tasks {
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
// ensure Java 8 baseline is enforced for main source
if (JavaVersion.current().isJava9Compatible()) {
options.release = 8
}
}
compileTestJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
normalization {
runtimeClasspath {
metaInf {
[
'Build-Date',
'Build-Date-UTC',
'Built-By',
'Built-OS',
'Build-Host',
'Build-Job',
'Build-Number',
'Build-Id',
'Change',
'Full-Change',
'Branch',
'Module-Origin',
'Created-By',
'Build-Java-Version'
].each {
ignoreAttribute it
ignoreProperty it
}
}
}
}
//noinspection GroovyAssignabilityCheck
test {
// set heap size for the test JVM(s)
maxHeapSize = "1500m"
useJUnitPlatform {
}
}
project.tasks.withType(Test) { Test testTask ->
testTask.testLogging.exceptionFormat = 'full'
}
license {
header rootProject.file('gradle/licenseHeader.txt')
strictCheck true
mapping {
java = 'SLASHSTAR_STYLE'
}
sourceSets = project.sourceSets
ext.year = Calendar.getInstance().get(Calendar.YEAR)
skipExistingHeaders = true
exclude '**/*.json' // comments not supported
exclude '**/*.xml' // for samples without a license header
}
dependencyLocking {
lockAllConfigurations()
}
tasks.register('resolveAndLockAll') {
description = 'Resolves dependencies of all configurations and writes them into the lock file.'
outputs.upToDateWhen { false }
doFirst {
assert gradle.startParameter.writeDependencyLocks || gradle.startParameter.lockedDependenciesToUpdate : 'Execute resolveAndLockAll --write-locks or --update-locks <dependencies>'
}
doLast {
project.configurations.findAll { it.canBeResolved }*.resolve()
}
}
description = 'Docs for Micrometer portfolio'
repositories {
mavenCentral()
}
}
apply plugin: 'org.siouan.frontend-jdk17'
frontend {
nodeVersion = '16.16.0'
assembleScript = 'run build'
cleanScript = 'run clean'
publishScript = 'run deploy'
}
tasks.register('yarnStart', RunYarn) {
dependsOn tasks.named('installNode')
dependsOn tasks.named('installFrontend')
script = 'run start'
}
tasks.register('yarnStop', Exec) {
executable "sh"
args "-c", '''kill -15 $(ps -efw | grep node | grep scripts/start.js | awk '{print $2}') '''
ignoreExitValue = true
doLast {
println 'Stopping running node server.'
}
}
yarnStart.configure { finalizedBy yarnStop }
tasks.register('yarnUpgrade', RunYarn) {
dependsOn tasks.named('installNode')
dependsOn tasks.named('installFrontend')
script = 'run upgrade'
}
[assembleFrontend, checkFrontend, yarnStart].each {
it.dependsOn(":samples:build", ":docs-util:generateCoalescedAdocs")
}
task deleteLockFiles (type: Delete) {
delete fileTree(dir: '.', include: '**/*.lockfile')
}
wrapper {
gradleVersion = '8.10'
}
defaultTasks 'build'