tgbotapi/maven.publish.gradle

57 lines
1.7 KiB
Groovy
Raw Normal View History

2018-12-27 03:40:53 +00:00
apply plugin: 'maven-publish'
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 {
2020-01-13 05:26:52 +00:00
developer {
id "InsanusMokrassar"
2019-12-03 05:07:25 +00:00
name "Ovsiannikov Aleksei"
email "ovsyannikov.alexey95@gmail.com"
}
2020-01-13 05:26:52 +00:00
2019-12-03 05:07:25 +00:00
}
2019-12-03 05:07:25 +00:00
licenses {
2020-01-13 05:26:52 +00:00
license {
2019-12-03 05:07:25 +00:00
name "Apache Software License 2.0"
url "https://github.com/InsanusMokrassar/TelegramBotAPI/blob/master/LICENSE"
}
2020-01-13 05:26:52 +00:00
}
2018-12-27 03:40:53 +00:00
}
}
}
2020-01-13 05:26:52 +00:00
}