-
Notifications
You must be signed in to change notification settings - Fork 45
/
build.gradle.kts
181 lines (163 loc) · 6.07 KB
/
build.gradle.kts
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
import com.diffplug.gradle.spotless.SpotlessApply
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import io.spring.gradle.dependencymanagement.dsl.DependencyManagementExtension
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
repositories {
mavenCentral()
}
plugins {
java
alias(libs.plugins.springboot) apply false
alias(libs.plugins.spring.dependencyManagement)
alias(libs.plugins.swagger) apply false
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.kotlin.plugin.spring) apply false
alias(libs.plugins.spotless)
alias(libs.plugins.licenseReport)
alias(libs.plugins.versions)
}
licenseReport {
configurations = arrayOf("compile")
}
allprojects {
group = "de.fhg.aisec.ids"
version = "7.3.0"
val versionRegex = ".*((rc|beta|alpha)-?[0-9]*|-b[0-9.]+)$".toRegex(RegexOption.IGNORE_CASE)
tasks.withType<DependencyUpdatesTask> {
rejectVersionIf {
// Reject release candidates and betas and pin Apache Camel to 3.18 LTS version
versionRegex.matches(candidate.version)
|| (candidate.group in setOf("org.apache.camel", "org.apache.camel.springboot")
&& !candidate.version.startsWith("3.18"))
|| candidate.group == "com.google.protobuf" && !candidate.version.startsWith("3.")
}
}
}
subprojects {
repositories {
mavenCentral()
// Legacy IAIS Infomodel artifact repo
maven("https://gitlab.cc-asp.fraunhofer.de/api/v4/projects/55371/packages/maven")
mavenLocal()
}
apply(plugin = "java")
apply(plugin = "java-library")
apply(plugin = "org.jetbrains.kotlin.jvm")
apply(plugin = "io.spring.dependency-management")
configure<DependencyManagementExtension> {
// This order is important! If camel versions are imported after spring, breaking downgrades will occur!
imports {
mavenBom("org.apache.camel.springboot:camel-spring-boot-dependencies:${rootProject.libs.versions.camel.get()}")
}
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:${rootProject.libs.versions.springBoot.get()}")
}
}
dependencies {
val versions = rootProject.libs.versions
// Some versions are downgraded for unknown reasons, fix this here
val groupPins = mapOf(
"org.jetbrains.kotlin" to mapOf(
"*" to versions.kotlin.get()
),
"org.jetbrains.kotlinx" to mapOf(
Regex("kotlinx-coroutines-.*") to versions.kotlinx.coroutines.get()
),
"com.google.guava" to mapOf(
"guava" to versions.guava.get()
),
"com.sun.xml.bind" to mapOf(
"jaxb-core" to versions.jaxbCore.get(),
"jaxb-impl" to versions.jaxbImpl.get()
),
"org.eclipse.jetty" to mapOf(
"*" to versions.jetty.get()
),
"org.bouncycastle" to mapOf(
"*" to versions.bouncyCastle.get()
)
)
// We need to explicitly specify the kotlin version for all kotlin dependencies,
// because otherwise something (maybe a plugin) downgrades the kotlin version,
// which produces errors in the kotlin compiler. This is really nasty.
configurations.all {
resolutionStrategy.eachDependency {
groupPins[requested.group]?.let { pins ->
pins["*"]?.let {
// Pin all names when asterisk is set
useVersion(it)
} ?: pins[requested.name]?.let { pin ->
// Pin only for specific names given in map
useVersion(pin)
} ?: pins.entries.firstOrNull { e ->
e.key.let {
it is Regex && it.matches(requested.name)
}
}?.let { useVersion(it.value) }
}
}
}
}
tasks.withType<KotlinCompile> {
compilerOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget.set(JvmTarget.JVM_17)
}
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
// Disable time-wasting tasks
tasks.withType<Zip> {
if (name in setOf("distZip", "bootDistZip")) {
enabled = false
}
}
tasks.withType<Tar> {
if (name in setOf("distTar", "bootDistTar")) {
enabled = false
}
}
}
val spotlessApplyAll: Task by tasks.creating
configure(subprojects.filter { it.name != "examples" }) {
apply(plugin = "com.diffplug.spotless")
tasks.withType<SpotlessApply> {
spotlessApplyAll.dependsOn(this.path)
}
spotless {
kotlin {
target("src/*/kotlin/**/*.kt")
ktlint(libs.versions.ktlint.get()).editorConfigOverride(mapOf(
"ktlint_code_style" to "ktlint_official"
))
licenseHeader(
"""/*-
* ========================LICENSE_START=================================
* ${project.name}
* %%
* Copyright (C) ${"$"}YEAR Fraunhofer AISEC
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =========================LICENSE_END==================================
*/
""".trim()
).yearSeparator(" - ")
}
}
}