Skip to content

Commit 5ea3726

Browse files
committed
Release 32.1.0
1 parent 3d6c4d2 commit 5ea3726

File tree

2 files changed

+19
-17
lines changed

2 files changed

+19
-17
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ We use [semantic versioning](http://semver.org/):
55
- PATCH version when you make backwards compatible bug fixes.
66

77
# Next Release
8+
9+
# 32.1.0
810
- [feature] _teamscale-maven-plugin_: Support for cucumber tests
911
- [feature] _teamscale-maven-plugin_, _impacted-test-engine_: Support for junit platform suite tests
1012

build.gradle.kts

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
plugins {
2-
alias(libs.plugins.versions)
3-
alias(libs.plugins.nexusPublish)
2+
alias(libs.plugins.versions)
3+
alias(libs.plugins.nexusPublish)
44
}
55

66
group = "com.teamscale"
77

8-
val appVersion by extra("32.0.0")
8+
val appVersion by extra("32.1.0")
99

1010
val snapshotVersion = appVersion + if (VersionUtils.isTaggedRelease()) "" else "-SNAPSHOT"
1111

1212
allprojects {
13-
version = snapshotVersion
13+
version = snapshotVersion
1414
}
1515

1616
// Installs all Maven artifacts to your local Maven repository
1717
val publishToMavenLocal by tasks.registering
1818

1919
subprojects {
20-
// must be run after evaluation because the publishToMavenLocal tasks are generated by our plugin during
21-
// project evaluation
22-
afterEvaluate {
23-
val publishTask = tasks.findByPath("publishToMavenLocal")
24-
if (publishTask != null) {
25-
publishToMavenLocal.configure {
26-
dependsOn(publishTask)
27-
}
28-
}
29-
}
20+
// must be run after evaluation because the publishToMavenLocal tasks are generated by our plugin during
21+
// project evaluation
22+
afterEvaluate {
23+
val publishTask = tasks.findByPath("publishToMavenLocal")
24+
if (publishTask != null) {
25+
publishToMavenLocal.configure {
26+
dependsOn(publishTask)
27+
}
28+
}
29+
}
3030
}
3131

3232
nexusPublishing {
33-
repositories {
34-
sonatype()
35-
}
33+
repositories {
34+
sonatype()
35+
}
3636
}
3737

0 commit comments

Comments
 (0)