TelegramBotApiLibraries/publish.gradle

119 lines
5.1 KiB
Groovy
Raw Normal View History

2021-02-22 15:01:08 +00:00
apply plugin: 'maven-publish'
task javadocsJar(type: Jar) {
2023-11-06 11:35:41 +00:00
archiveClassifier = 'javadoc'
2021-02-22 15:01:08 +00:00
}
publishing {
publications.all {
artifact javadocsJar
pom {
description = "${project.name}"
name = "${project.name}"
url = "https://github.com/InsanusMokrassar/TelegramBotApiLibraries"
scm {
developerConnection = "scm:git:[fetch=]https://github.com/InsanusMokrassar/TelegramBotApiLibraries.git[push=]https://github.com/InsanusMokrassar/TelegramBotApiLibraries.git"
url = "https://github.com/InsanusMokrassar/TelegramBotApiLibraries.git"
}
developers {
2022-01-04 16:55:14 +00:00
2021-02-22 15:01:08 +00:00
developer {
id = "InsanusMokrassar"
name = "Ovsiannikov Aleksei"
email = "ovsyannikov.alexey95@gmail.com"
}
2022-01-04 16:55:14 +00:00
2021-02-22 15:01:08 +00:00
}
licenses {
2022-01-04 16:55:14 +00:00
2021-02-22 15:01:08 +00:00
license {
name = "MIT License"
url = "https://opensource.org/licenses/MIT"
}
2022-01-04 16:55:14 +00:00
2021-02-22 15:01:08 +00:00
}
}
repositories {
2021-11-12 11:15:36 +00:00
if ((project.hasProperty('GITHUBPACKAGES_USER') || System.getenv('GITHUBPACKAGES_USER') != null) && (project.hasProperty('GITHUBPACKAGES_PASSWORD') || System.getenv('GITHUBPACKAGES_PASSWORD') != null)) {
maven {
name = "GithubPackages"
url = uri("https://maven.pkg.github.com/InsanusMokrassar/TelegramBotApiLibraries")
2022-11-17 05:35:16 +00:00
2021-11-12 11:15:36 +00:00
credentials {
username = project.hasProperty('GITHUBPACKAGES_USER') ? project.property('GITHUBPACKAGES_USER') : System.getenv('GITHUBPACKAGES_USER')
password = project.hasProperty('GITHUBPACKAGES_PASSWORD') ? project.property('GITHUBPACKAGES_PASSWORD') : System.getenv('GITHUBPACKAGES_PASSWORD')
}
2022-11-17 05:35:16 +00:00
}
}
2023-12-10 08:59:50 +00:00
if ((project.hasProperty('INMONEXUS_USER') || System.getenv('INMONEXUS_USER') != null) && (project.hasProperty('INMONEXUS_PASSWORD') || System.getenv('INMONEXUS_PASSWORD') != null)) {
2022-11-17 05:35:16 +00:00
maven {
2023-12-10 08:59:50 +00:00
name = "InmoNexus"
url = uri("https://nexus.inmo.dev/repository/maven-releases/")
2022-11-17 05:35:16 +00:00
2023-12-10 08:59:50 +00:00
credentials {
username = project.hasProperty('INMONEXUS_USER') ? project.property('INMONEXUS_USER') : System.getenv('INMONEXUS_USER')
password = project.hasProperty('INMONEXUS_PASSWORD') ? project.property('INMONEXUS_PASSWORD') : System.getenv('INMONEXUS_PASSWORD')
2022-11-17 05:35:16 +00:00
}
2021-11-12 11:15:36 +00:00
}
}
if ((project.hasProperty('SONATYPE_USER') || System.getenv('SONATYPE_USER') != null) && (project.hasProperty('SONATYPE_PASSWORD') || System.getenv('SONATYPE_PASSWORD') != null)) {
maven {
name = "sonatype"
url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
2022-11-17 05:35:16 +00:00
2021-11-12 11:15:36 +00:00
credentials {
username = project.hasProperty('SONATYPE_USER') ? project.property('SONATYPE_USER') : System.getenv('SONATYPE_USER')
password = project.hasProperty('SONATYPE_PASSWORD') ? project.property('SONATYPE_PASSWORD') : System.getenv('SONATYPE_PASSWORD')
}
2022-11-17 05:35:16 +00:00
2021-02-22 15:01:08 +00:00
}
}
}
}
}
2022-01-04 16:55:14 +00:00
if (project.hasProperty("signing.gnupg.keyName")) {
2022-01-04 13:33:47 +00:00
apply plugin: 'signing'
2022-01-04 16:55:14 +00:00
2022-01-04 13:33:47 +00:00
signing {
useGpgCmd()
2022-01-04 16:55:14 +00:00
2022-01-04 13:33:47 +00:00
sign publishing.publications
}
2022-01-04 17:20:02 +00:00
task signAll {
tasks.withType(Sign).forEach {
dependsOn(it)
}
}
2023-11-06 11:35:41 +00:00
// Workaround to make android sign operations depend on signing tasks
project.getTasks().withType(AbstractPublishToMaven.class).configureEach {
def signingTasks = project.getTasks().withType(Sign.class)
mustRunAfter(signingTasks)
}
// Workaround to make test tasks use sign
project.getTasks().withType(Sign.class).configureEach { signTask ->
def withoutSign = (signTask.name.startsWith("sign") ? signTask.name.minus("sign") : signTask.name)
def pubName = withoutSign.endsWith("Publication") ? withoutSign.substring(0, withoutSign.length() - "Publication".length()) : withoutSign
// These tasks only exist for native targets, hence findByName() to avoid trying to find them for other targets
// Task ':linkDebugTest<platform>' uses this output of task ':sign<platform>Publication' without declaring an explicit or implicit dependency
def debugTestTask = tasks.findByName("linkDebugTest$pubName")
if (debugTestTask != null) {
signTask.mustRunAfter(debugTestTask)
}
// Task ':compileTestKotlin<platform>' uses this output of task ':sign<platform>Publication' without declaring an explicit or implicit dependency
def testTask = tasks.findByName("compileTestKotlin$pubName")
if (testTask != null) {
signTask.mustRunAfter(testTask)
}
}
2022-01-04 17:20:02 +00:00
}