-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle.kts
188 lines (160 loc) · 5.73 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
182
183
184
185
186
187
188
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.io.FileInputStream
import java.util.*
plugins {
java
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.spring.dependencyManagement)
`maven-publish`
alias(libs.plugins.versions)
}
group = "de.fhg.aisec.ids.clearinghouse"
val fis = FileInputStream("../clearing-house-app/logging-service/Cargo.toml")
val props = Properties()
props.load(fis)
version = props.getProperty("version").removeSurrounding("\"")
sourceSets{
create("intTest"){
}
}
val intTestImplementation: Configuration by configurations.getting {
extendsFrom(configurations.testImplementation.get())
}
configurations["intTestRuntimeOnly"].extendsFrom(configurations.runtimeOnly.get())
val integrationTest = task<Test>("integrationTest") {
// set to true for debugging
testLogging.showStandardStreams = false
useJUnitPlatform()
description = "Runs integration tests."
group = "verification"
testClassesDirs = sourceSets["intTest"].output.classesDirs
classpath = sourceSets["intTest"].runtimeClasspath
shouldRunAfter("test")
}
tasks.register("printChVersion") {
doFirst {
println(version)
}
}
buildscript {
repositories {
mavenCentral()
fun findProperty(s: String) = project.findProperty(s) as String?
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/Fraunhofer-AISEC/ids-clearing-house-service")
credentials(HttpHeaderCredentials::class) {
name = findProperty("github.username")
value = findProperty("github.token")
}
authentication {
create<HttpHeaderAuthentication>("header")
}
}
}
}
publishing {
fun findProperty(s: String) = project.findProperty(s) as String?
publications {
create<MavenPublication>("binary") {
artifact(tasks["jar"])
}
}
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/Fraunhofer-AISEC/ids-clearing-house-service")
credentials(HttpHeaderCredentials::class) {
name = findProperty("github.username")
value = findProperty("github.token")
}
authentication {
create<HttpHeaderAuthentication>("header")
}
}
}
}
repositories {
mavenCentral()
// References IAIS repository that contains the infomodel artifacts
maven("https://gitlab.cc-asp.fraunhofer.de/api/v4/projects/55371/packages/maven")
}
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(),
Regex("kotlinx-serialization-.*") to versions.kotlinx.serialization.get()
),
"org.eclipse.jetty" to mapOf(
"*" to versions.jetty.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) }
}
}
}
// Imported from IDS feature in TC at runtime
implementation(libs.infomodel.model)
implementation(libs.javax.validation)
implementation(libs.camel.idscp2)
implementation(libs.camel.core)
implementation(libs.camel.api)
implementation(libs.camel.jetty)
implementation(libs.apacheHttp.core)
implementation(libs.apacheHttp.client)
implementation(libs.apacheHttp.mime)
implementation(libs.commons.fileupload)
implementation(libs.ktor.auth)
implementation(libs.ktor.auth.jwt)
implementation(libs.jackson.databind)
implementation(libs.jackson.annotations)
compileOnly(libs.spring.context)
testApi(libs.slf4j.simple)
testImplementation(libs.idscp2.core)
testImplementation(libs.junit5)
testImplementation(libs.okhttp3)
testImplementation(kotlin("test"))
testImplementation(libs.kotlin.serialization.json)
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "17"
}
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
sourceCompatibility = JavaVersion.VERSION_17.toString()
targetCompatibility = JavaVersion.VERSION_17.toString()
}
val versionRegex = ".*((rc|beta)-?[0-9]*|-(b|alpha)[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"))
}
}