1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-01 15:35:24 +00:00
tgbotapi/maven.publish.gradle

60 lines
1.7 KiB
Groovy
Raw Normal View History

2018-12-27 03:40:53 +00:00
apply plugin: 'maven-publish'
apply plugin: 'signing'
2019-12-03 05:07:25 +00:00
task javadocsJar(type: Jar) {
classifier = 'javadoc'
2018-12-27 03:40:53 +00:00
}
2019-12-03 05:07:25 +00:00
afterEvaluate {
project.publishing.publications.all {
// rename artifacts
groupId "${project.group}"
if (it.name.contains('kotlinMultiplatform')) {
artifactId = "${project.name}"
} else {
artifactId = "${project.name}-$name"
}
}
2018-12-27 03:40:53 +00:00
}
publishing {
2019-12-03 05:07:25 +00:00
publications.all {
artifact javadocsJar
pom.withXml {
asNode().children().last() + {
resolveStrategy = Closure.DELEGATE_FIRST
description "Library for Object-Oriented and type-safe work with Telegram Bot API"
name "Telegram Bot API"
url "https://insanusmokrassar.github.io/TelegramBotAPI"
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"
2019-12-03 05:07:25 +00:00
name "Ovsiannikov Aleksei"
email "ovsyannikov.alexey95@gmail.com"
}
2019-12-03 05:07:25 +00:00
}
2019-12-03 05:07:25 +00:00
licenses {
license {
2019-12-03 05:07:25 +00:00
name "Apache Software License 2.0"
url "https://github.com/InsanusMokrassar/TelegramBotAPI/blob/master/LICENSE"
}
}
2018-12-27 03:40:53 +00:00
}
}
}
}
signing {
useGpgCmd()
2019-12-03 05:07:25 +00:00
sign(publishing.publications)
2018-12-27 03:40:53 +00:00
}