krontab/publish.gradle

106 lines
3.9 KiB
Groovy
Raw Normal View History

2020-11-21 09:04:34 +00:00
apply plugin: 'maven-publish'
2019-05-21 10:14:09 +00:00
2020-11-21 09:04:34 +00:00
task javadocsJar(type: Jar) {
archiveClassifier = 'javadoc'
2019-05-21 10:14:09 +00:00
}
2019-11-19 19:36:10 +00:00
2020-11-21 09:04:34 +00:00
publishing {
publications.all {
artifact javadocsJar
pom {
description = "It is an analog of crontab util for Kotlin Coroutines"
name = "Krontab"
2021-03-13 14:30:02 +00:00
url = "https://github.com/InsanusMokrassar/krontab"
2020-11-21 09:04:34 +00:00
scm {
2021-03-13 14:30:02 +00:00
developerConnection = "scm:git:[fetch=]https://github.com/InsanusMokrassar/krontab.git[push=]https://github.com/InsanusMokrassar/krontab.git"
url = "https://github.com/InsanusMokrassar/krontab.git"
2020-11-21 09:04:34 +00:00
}
developers {
developer {
id = "InsanusMokrassar"
name = "Ovsiannikov Aleksei"
email = "ovsyannikov.alexey95@gmail.com"
}
}
licenses {
license {
name = "Apache Software License 2.0"
2021-03-13 14:30:02 +00:00
url = "https://github.com/InsanusMokrassar/krontab/blob/master/LICENSE"
2020-11-21 09:04:34 +00:00
}
}
}
repositories {
2021-03-13 14:30:02 +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/krontab")
2022-12-14 17:00:44 +00:00
2021-03-13 14:30:02 +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-12-14 17:00:44 +00:00
}
}
if (project.hasProperty('GITEA_TOKEN') || System.getenv('GITEA_TOKEN') != null) {
maven {
name = "Gitea"
url = uri("https://git.inmo.dev/api/packages/InsanusMokrassar/maven")
credentials(HttpHeaderCredentials) {
name = "Authorization"
value = project.hasProperty('GITEA_TOKEN') ? project.property('GITEA_TOKEN') : System.getenv('GITEA_TOKEN')
}
authentication {
header(HttpHeaderAuthentication)
}
2021-03-13 14:30:02 +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-12-14 17:00:44 +00:00
2021-03-13 14:30:02 +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-12-14 17:00:44 +00:00
2020-11-21 09:04:34 +00:00
}
}
}
}
2021-03-13 14:30:02 +00:00
}
2022-12-14 17:00:44 +00:00
if (project.hasProperty("signing.gnupg.keyName")) {
apply plugin: 'signing'
signing {
useGpgCmd()
sign publishing.publications
}
task signAll {
tasks.withType(Sign).forEach {
dependsOn(it)
}
}
// 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)
}
2021-03-13 14:30:02 +00:00
}