mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
76 lines
1.9 KiB
Groovy
76 lines
1.9 KiB
Groovy
apply plugin: 'groovy'
|
|
apply plugin: 'maven-publish'
|
|
apply plugin: 'com.jfrog.bintray'
|
|
|
|
dependencies {
|
|
compile gradleApi()
|
|
compile localGroovy()
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
task("sourceJar", type: Jar, dependsOn: classes) {
|
|
classifier = 'sources'
|
|
from sourceSets.main.allSource
|
|
}
|
|
|
|
task("javadocJar", type: Jar, dependsOn: javadoc) {
|
|
classifier = 'javadoc'
|
|
from javadoc.destinationDir
|
|
}
|
|
|
|
bintray {
|
|
user = System.getenv('CORDA_BINTRAY_USER')
|
|
key = System.getenv('CORDA_BINTRAY_KEY')
|
|
publications = ['publishUtils']
|
|
dryRun = false
|
|
pkg {
|
|
repo = 'corda'
|
|
name = 'publish-utils'
|
|
userOrg = 'r3'
|
|
licenses = ['Apache-2.0']
|
|
|
|
version {
|
|
gpg {
|
|
sign = true
|
|
passphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
publishUtils(MavenPublication) {
|
|
from components.java
|
|
groupId 'net.corda.plugins'
|
|
artifactId 'publish-utils'
|
|
|
|
artifact sourceJar
|
|
artifact javadocJar
|
|
|
|
pom.withXml {
|
|
asNode().children().last() + {
|
|
resolveStrategy = Closure.DELEGATE_FIRST
|
|
name 'publish-utils'
|
|
description 'A small gradle plugin that adds a couple of convenience functions for publishing to Maven'
|
|
url 'https://github.com/corda/corda'
|
|
scm {
|
|
url 'https://github.com/corda/corda'
|
|
}
|
|
|
|
licenses {
|
|
license {
|
|
name 'Apache-2.0'
|
|
url 'https://www.apache.org/licenses/LICENSE-2.0'
|
|
distribution 'repo'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|