File tree Expand file tree Collapse file tree 2 files changed +19
-17
lines changed
Expand file tree Collapse file tree 2 files changed +19
-17
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11plugins {
2- alias(libs.plugins.versions)
3- alias(libs.plugins.nexusPublish)
2+ alias(libs.plugins.versions)
3+ alias(libs.plugins.nexusPublish)
44}
55
66group = " com.teamscale"
77
8- val appVersion by extra(" 32.0 .0" )
8+ val appVersion by extra(" 32.1 .0" )
99
1010val snapshotVersion = appVersion + if (VersionUtils .isTaggedRelease()) " " else " -SNAPSHOT"
1111
1212allprojects {
13- version = snapshotVersion
13+ version = snapshotVersion
1414}
1515
1616// Installs all Maven artifacts to your local Maven repository
1717val publishToMavenLocal by tasks.registering
1818
1919subprojects {
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
3232nexusPublishing {
33- repositories {
34- sonatype()
35- }
33+ repositories {
34+ sonatype()
35+ }
3636}
3737
You can’t perform that action at this time.
0 commit comments