2020-05-14 08:07:23 +00:00
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
|
|
|
|
task javadocsJar(type: Jar) {
|
|
|
|
classifier = 'javadoc'
|
|
|
|
}
|
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
project.publishing.publications.all {
|
|
|
|
// rename artifacts
|
|
|
|
groupId "${project.group}"
|
|
|
|
if (it.name.contains('kotlinMultiplatform')) {
|
|
|
|
artifactId = "${project.name}"
|
|
|
|
} else {
|
|
|
|
artifactId = "${project.name}-$name"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications.all {
|
|
|
|
artifact javadocsJar
|
|
|
|
|
2020-05-22 08:03:48 +00:00
|
|
|
pom {
|
2020-08-20 05:55:39 +00:00
|
|
|
description = "Library for Object-Oriented and type-safe work with Telegram Bot API"
|
|
|
|
name = "Telegram Bot API Core"
|
|
|
|
url = "https://insanusmokrassar.github.io/TelegramBotAPI"
|
2020-05-22 08:03:48 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
}
|
2020-05-14 08:07:23 +00:00
|
|
|
|
2020-05-22 08:03:48 +00:00
|
|
|
developers {
|
|
|
|
|
|
|
|
developer {
|
|
|
|
id = "InsanusMokrassar"
|
|
|
|
name = "Ovsiannikov Aleksei"
|
|
|
|
email = "ovsyannikov.alexey95@gmail.com"
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-05-14 08:07:23 +00:00
|
|
|
|
2020-05-22 08:03:48 +00:00
|
|
|
licenses {
|
|
|
|
|
|
|
|
license {
|
|
|
|
name = "Apache Software License 2.0"
|
|
|
|
url = "https://github.com/InsanusMokrassar/TelegramBotAPI/blob/master/LICENSE"
|
|
|
|
}
|
|
|
|
|
2020-05-14 08:07:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|