PlaguBot/plugin/publish.gradle

82 lines
2.6 KiB
Groovy
Raw Normal View History

2020-12-08 09:00:54 +00:00
apply plugin: 'maven-publish'
2020-11-12 05:58:08 +00:00
2020-12-08 09:00:54 +00:00
task javadocJar(type: Jar) {
from javadoc
classifier = 'javadoc'
2020-11-12 05:58:08 +00:00
}
2021-02-16 18:31:50 +00:00
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
2020-11-12 05:58:08 +00:00
2020-12-08 09:00:54 +00:00
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact javadocJar
2021-02-16 18:31:50 +00:00
artifact sourcesJar
2020-11-12 05:58:08 +00:00
2020-12-08 09:00:54 +00:00
pom {
resolveStrategy = Closure.DELEGATE_FIRST
2021-02-16 17:34:47 +00:00
description = "Base dependency for whole PlaguBot project"
name = "PlaguBot Plugin"
2020-12-08 09:00:54 +00:00
url = "https://github.com/InsanusMokrassar/PlaguBot"
scm {
developerConnection = "scm:git:[fetch=]ssh://git@github.com/InsanusMokrassar/PlaguBot.git[push=]ssh://git@github.com/InsanusMokrassar/PlaguBot.git"
url = "ssh://git@github.com/InsanusMokrassar/PlaguBot.git"
}
developers {
developer {
id = "InsanusMokrassar"
name = "Aleksei Ovsiannikov"
email = "ovsyannikov.alexey95@gmail.com"
}
}
licenses {
license {
name = "Apache Software License 2.0"
url = "https://github.com/InsanusMokrassar/PlaguBot/LICENSE"
}
}
}
2022-05-13 07:04:49 +00:00
repositories {
if ((project.hasProperty('SONATYPE_USER') || System.getenv('SONATYPE_USER') != null) && (project.hasProperty('SONATYPE_PASSWORD') || System.getenv('SONATYPE_PASSWORD') != null)) {
2021-02-16 17:34:47 +00:00
maven {
name = "sonatype"
url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
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')
}
}
2020-12-08 09:00:54 +00:00
}
2022-05-13 07:04:49 +00:00
}
2020-12-08 09:00:54 +00:00
}
}
2021-02-16 17:34:47 +00:00
}
2022-05-13 07:04:49 +00:00
if (project.hasProperty("signing.gnupg.keyName")) {
apply plugin: 'signing'
signing {
useGpgCmd()
sign publishing.publications
}
task signAll {
tasks.withType(Sign).forEach {
dependsOn(it)
}
}
2021-02-16 17:34:47 +00:00
}