We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fc0075 commit ba5e5daCopy full SHA for ba5e5da
build.gradle
@@ -1,5 +1,7 @@
1
allprojects {
2
group = 'org.jetbrains.kotlinx'
3
+ def deployVersion = properties['DeployVersion']
4
+ if (deployVersion != null) version = deployVersion
5
}
6
7
buildscript {
@@ -191,6 +193,10 @@ configure(subprojects.findAll { !unpublished.contains(it.name) }) {
191
193
192
194
195
196
+
197
+ bintrayUpload.doLast {
198
+ println("Uploaded $project.name version $project.version")
199
+ }
200
201
202
configure(subprojects.findAll { !unpublished.contains(it.name) && it.name != 'kotlinx-coroutines-core' }) {
0 commit comments