updates in publish script

This commit is contained in:
InsanusMokrassar 2020-01-13 11:26:52 +06:00
parent 82129205fa
commit 9ddab0bf29
2 changed files with 15 additions and 1 deletions

View File

@ -34,20 +34,24 @@ publishing {
}
developers {
developer {
id "InsanusMokrassar"
name "Ovsiannikov Aleksei"
email "ovsyannikov.alexey95@gmail.com"
}
}
licenses {
license {
name "Apache Software License 2.0"
url "https://github.com/InsanusMokrassar/TelegramBotAPI/blob/master/LICENSE"
}
}
}
}
}
}
}

View File

@ -2,9 +2,19 @@ apply plugin: 'com.jfrog.bintray'
apply from: "maven.publish.gradle"
ext {
projectBintrayDir = "${project.group}/".replace(".", "/") + "${project.name}/${project.version}"
}
bintray {
user = project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : System.getenv('BINTRAY_USER')
key = project.hasProperty('BINTRAY_KEY') ? project.property('BINTRAY_KEY') : System.getenv('BINTRAY_KEY')
filesSpec {
from "${buildDir}/publications/kotlinMultiplatform/"
include "module.json"
rename "module\\.json", "${project.name}-${project.version}.module"
into "${projectBintrayDir}"
}
pkg {
repo = "StandardRepository"
name = "${project.name}"