mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-04 23:43:47 +00:00
60 lines
2.1 KiB
Groovy
60 lines
2.1 KiB
Groovy
apply plugin: 'maven-publish'
|
|
apply plugin: 'signing'
|
|
|
|
task javadocsJar(type: Jar) {
|
|
classifier = 'javadoc'
|
|
}
|
|
|
|
publishing {
|
|
publications.all {
|
|
artifact javadocsJar
|
|
|
|
pom {
|
|
description = "API extensions which provide work with RequestsExecutor of TelegramBotAPI almost like it is described in original Telegram Bot API reference"
|
|
name = "Telegram Bot API Extensions for API"
|
|
url = "https://insanusmokrassar.github.io/TelegramBotAPI/TelegramBotAPI-extensions-api"
|
|
|
|
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"
|
|
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")
|
|
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')
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
signing {
|
|
useGpgCmd()
|
|
publishing.publications.forEach { sign it }
|
|
}
|