We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a05f849 commit 5f1fec3Copy full SHA for 5f1fec3
2 files changed
CHANGELOG.md
@@ -1,3 +1,5 @@
1
+* Fix multi-module project release
2
+
3
### 3.0.1 (2021-07-13)
4
* Update ru.vyarus.java-lib 2.2.0 -> 2.2.1 (fix multi-module projects configuration)
5
app/templates/project-multi/build.gradle
@@ -132,8 +132,8 @@ nexusPublishing {
132
133
// release manages only root project (subprojects will be checked and released implicitly)
134
afterReleaseBuild {
135
- dependsOn = ['publishToSonatype',
136
- 'closeAndReleaseSonatypeStagingRepository']
+ dependsOn subprojects.collect {":$it.name:publishToSonatype" }
+ dependsOn 'closeAndReleaseSonatypeStagingRepository'
137
doLast {
138
logger.warn "RELEASED $project.group:$project.name:$project.version"
139
}
0 commit comments