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 e6aa913 commit 71e6e76Copy full SHA for 71e6e76
maven.publish.gradle.kts
@@ -1,8 +1,8 @@
1
// From https://stackoverflow.com/a/63502756/3891161
2
3
+import org.gradle.api.publish.PublishingExtension
4
import java.io.FileInputStream
5
import java.util.*
-import org.gradle.api.publish.PublishingExtension
6
7
apply(plugin = "maven-publish")
8
@@ -77,11 +77,11 @@ configure<PublishingExtension> {
77
}
78
79
repositories {
80
- maven("https://api.bintray.com/maven/${bintrayUser}/${bintrayRepo}/${artifact}/;publish=1") {
+ maven("https://api.bintray.com/maven/$bintrayUser/$bintrayRepo/$artifact/;publish=1") {
81
credentials {
82
username = bintrayUser
83
password = bintrayApiKey
84
85
86
87
-}
+}
0 commit comments