1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-02-16 19:52:01 +00:00

76 lines
2.4 KiB
Groovy
Raw Normal View History

apply plugin: 'maven-publish'
2021-01-13 14:21:35 +06:00
apply plugin: 'signing'
2020-05-14 14:07:23 +06:00
task javadocsJar(type: Jar) {
classifier = 'javadoc'
2020-05-14 14:07:23 +06:00
}
2021-01-13 14:21:35 +06:00
task sourceJar (type : Jar) {
classifier = 'sources'
}
2020-05-14 14:07:23 +06:00
afterEvaluate {
project.publishing.publications.all {
// rename artifacts
groupId "${project.group}"
2020-05-14 14:07:23 +06:00
if (it.name.contains('kotlinMultiplatform')) {
artifactId = "${project.name}"
2021-01-13 14:21:35 +06:00
artifact sourceJar
2020-05-14 14:07:23 +06:00
} else {
artifactId = "${project.name}-$name"
2020-05-14 14:07:23 +06:00
}
}
2020-05-14 14:07:23 +06:00
}
publishing {
publications.all {
artifact javadocsJar
pom {
description = "Util extensions for more useful work with updates and other things"
name = "Telegram Bot API Utility Extensions"
url = "https://insanusmokrassar.github.io/TelegramBotAPI/TelegramBotAPI-extensions-utils"
scm {
developerConnection = "scm:git:[fetch=]https://github.com/insanusmokrassar/TelegramBotAPI.git[push=]https://github.com/insanusmokrassar/TelegramBotAPI.git"
url = "https://github.com/insanusmokrassar/TelegramBotAPI.git"
}
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"
}
}
}
repositories {
maven {
name = "bintray"
2020-11-18 17:51:53 +06:00
url = uri("https://api.bintray.com/maven/${project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : System.getenv('BINTRAY_USER')}/TelegramBotAPI/${project.name}/;publish=1;override=1")
credentials {
username = project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : System.getenv('BINTRAY_USER')
password = project.hasProperty('BINTRAY_KEY') ? project.property('BINTRAY_KEY') : System.getenv('BINTRAY_KEY')
}
}
}
}
2021-01-13 14:21:35 +06:00
}
signing {
useGpgCmd()
publishing.publications.forEach { sign it }
}