mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2024-11-13 03:13:47 +00:00
83 lines
2.9 KiB
Groovy
83 lines
2.9 KiB
Groovy
apply plugin: 'maven-publish'
|
|
apply plugin: 'signing'
|
|
|
|
|
|
task javadocJar(type: Jar) {
|
|
from javadoc
|
|
classifier = 'javadoc'
|
|
}
|
|
task sourcesJar(type: Jar) {
|
|
from sourceSets.main.allSource
|
|
classifier = 'sources'
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
from components.java
|
|
|
|
artifact javadocJar
|
|
artifact sourcesJar
|
|
|
|
pom {
|
|
resolveStrategy = Closure.DELEGATE_FIRST
|
|
|
|
description = "Base dependency for whole PlaguBot project"
|
|
name = "PlaguBot Plugin"
|
|
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"
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
name = "bintray"
|
|
url = uri("https://api.bintray.com/maven/${project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : System.getenv('BINTRAY_USER')}/PlaguBot/${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')
|
|
}
|
|
}
|
|
|
|
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')
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
signing {
|
|
useGpgCmd()
|
|
sign publishing.publications
|
|
}
|