-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle.kts
36 lines (32 loc) · 867 Bytes
/
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
plugins {
base
alias(libs.plugins.versions)
id("pl.allegro.tech.build.axion-release")
id("realworld.jacoco-aggregation")
}
description = "Real world backend API built in Micronaut"
scmVersion {
tag {
prefix.set("v")
}
}
dependencies {
implementation(project(":service"))
}
tasks {
dependencyUpdates {
checkConstraints = true
resolutionStrategy {
componentSelection {
all {
val rejected = listOf("alpha", "beta", "rc", "cr", "m", "preview", "b", "ea")
.map { qualifier -> Regex("(?i).*[.-]$qualifier[.\\d-+]*") }
.any { it.matches(candidate.version) }
if (rejected) {
reject("Release candidate")
}
}
}
}
}
}