File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
88apply (" versions.gradle.kts" )
99
1010group = " io.github.microutils"
11- version = " 2.0.0 " + (if (System .getProperty(" snapshot" )?.toBoolean() == true ) " -SNAPSHOT" else " " )
11+ version = " 2.0.1 " + (if (System .getProperty(" snapshot" )?.toBoolean() == true ) " -SNAPSHOT" else " " )
1212
1313repositories {
1414 jcenter()
@@ -125,12 +125,12 @@ publishing {
125125}
126126
127127publishing {
128- val bintrayOrg: String? by project
129- val bintrayRepo: String? by project
130- val bintrayUser: String? by project
131- val bintrayApiKey: String? by project
128+ val bintrayOrg = " microutils "
129+ val bintrayRepo = " kotlin-logging "
130+ val bintrayUser = System .getProperty( " bintray.user " )
131+ val bintrayApiKey = System .getProperty( " bintray.key " )
132132
133- if (bintrayRepo != null && bintrayUser != null && bintrayApiKey != null ) {
133+ if (bintrayUser != null && bintrayApiKey != null ) {
134134 repositories {
135135 maven {
136136 name = " bintray"
You can’t perform that action at this time.
0 commit comments