tgbotapi/tgbotapi/publish.gradle

51 lines
1.4 KiB
Groovy
Raw Normal View History

apply plugin: 'maven-publish'
2021-01-13 08:21:35 +00:00
apply plugin: 'signing'
2020-05-14 08:07:23 +00:00
task javadocsJar(type: Jar) {
classifier = 'javadoc'
2020-05-14 08:07:23 +00:00
}
publishing {
publications.all {
artifact javadocsJar
pom {
description = "This project just include all subproject of TelegramBotAPI"
name = "Telegram Bot API"
url = "https://insanusmokrassar.github.io/TelegramBotAPI/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"
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 {
2021-02-05 18:50:51 +00:00
}
}
2021-01-13 08:21:35 +00:00
}
signing {
useGpgCmd()
2021-02-05 18:50:51 +00:00
sign publishing.publications
2021-01-13 08:21:35 +00:00
}