2020-11-18 11:18:40 +00:00
|
|
|
apply plugin: 'maven-publish'
|
2020-05-14 08:07:23 +00:00
|
|
|
|
2020-11-18 11:18:40 +00:00
|
|
|
task javadocsJar(type: Jar) {
|
|
|
|
classifier = 'javadoc'
|
2020-05-14 08:07:23 +00:00
|
|
|
}
|
|
|
|
|
2020-11-18 11:18:40 +00:00
|
|
|
afterEvaluate {
|
|
|
|
project.publishing.publications.all {
|
|
|
|
// rename artifacts
|
|
|
|
groupId "${project.group}"
|
2020-05-14 08:07:23 +00:00
|
|
|
if (it.name.contains('kotlinMultiplatform')) {
|
2020-11-18 11:18:40 +00:00
|
|
|
artifactId = "${project.name}"
|
2020-05-14 08:07:23 +00:00
|
|
|
} else {
|
2020-11-18 11:18:40 +00:00
|
|
|
artifactId = "${project.name}-$name"
|
2020-05-14 08:07:23 +00:00
|
|
|
}
|
2020-11-18 11:18:40 +00:00
|
|
|
}
|
2020-05-14 08:07:23 +00:00
|
|
|
}
|
|
|
|
|
2020-11-18 11:18:40 +00:00
|
|
|
publishing {
|
|
|
|
publications.all {
|
|
|
|
artifact javadocsJar
|
|
|
|
|
|
|
|
pom {
|
|
|
|
description = "Library for Object-Oriented and type-safe work with Telegram Bot API"
|
|
|
|
name = "Telegram Bot API Core"
|
|
|
|
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"
|
|
|
|
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 11:51:53 +00: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")
|
2020-11-18 11:18:40 +00:00
|
|
|
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')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|