This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
forked from Fraunhofer-AISEC/trusted-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
153 lines (136 loc) · 5.05 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
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import io.spring.gradle.dependencymanagement.dsl.DependencyManagementExtension
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.0.0-rc2"
val versionRegex = ".*(rc-?[0-9]*|beta)$".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 == "org.springframework.boot" && !candidate.version.startsWith("2."))
|| (candidate.group == "org.springframework.security" && !candidate.version.startsWith("5."))
|| (candidate.group.startsWith("de.fraunhofer.iais.eis.ids") && !candidate.version.startsWith("4.1."))
}
}
}
subprojects {
repositories {
mavenCentral()
mavenLocal()
// References IAIS repository that contains the infomodel artifacts
maven("https://maven.iais.fraunhofer.de/artifactory/eis-ids-public/")
}
apply(plugin = "java")
apply(plugin = "java-library")
apply(plugin = "org.jetbrains.kotlin.jvm")
apply(plugin = "io.spring.dependency-management")
apply(plugin = "com.diffplug.spotless")
configure<DependencyManagementExtension> {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:${rootProject.libs.versions.springBoot.get()}")
}
imports {
mavenBom("org.apache.camel.springboot:camel-spring-boot-dependencies:${rootProject.libs.versions.camel.get()}")
}
}
dependencies {
// Some versions are downgraded for unknown reasons, fix this here
val groupPins = mapOf(
"org.jetbrains.kotlin" to mapOf(
"*" to rootProject.libs.versions.kotlin.get()
),
"com.google.guava" to mapOf(
"guava" to rootProject.libs.versions.guava.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)
}
}
}
}
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "11"
}
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
sourceCompatibility = "11"
targetCompatibility = "11"
}
// 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
}
}
}
configure(subprojects.filter { it.name != "examples" }) {
apply(plugin = "com.diffplug.spotless")
spotless {
kotlin {
target("src/*/kotlin/**/*.kt")
ktlint(libs.versions.ktlint.get())
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(" - ")
}
}
}