2016-09-30 12:47:24 +00:00
|
|
|
apply plugin: 'groovy'
|
2016-11-17 17:08:57 +00:00
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
2016-09-30 12:47:24 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile gradleApi()
|
|
|
|
compile localGroovy()
|
|
|
|
}
|
2016-09-30 09:58:03 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
2016-11-03 15:57:50 +00:00
|
|
|
quasarUtils(MavenPublication) {
|
2016-09-30 09:58:03 +00:00
|
|
|
from components.java
|
2016-11-10 13:14:38 +00:00
|
|
|
groupId 'net.corda.plugins'
|
2016-10-06 13:35:00 +00:00
|
|
|
artifactId 'quasar-utils'
|
2016-11-03 15:57:50 +00:00
|
|
|
|
|
|
|
artifact sourceJar
|
|
|
|
artifact javadocJar
|
2016-09-30 09:58:03 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-10 13:14:38 +00:00
|
|
|
}
|