2016-10-06 14:48:40 +00:00
|
|
|
apply plugin: 'groovy'
|
2016-11-03 15:57:50 +00:00
|
|
|
apply plugin: DefaultPublishTasks
|
2016-10-06 14:48:40 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile gradleApi()
|
|
|
|
compile localGroovy()
|
2016-10-11 15:20:47 +00:00
|
|
|
|
|
|
|
compile "com.typesafe:config:1.3.0"
|
2016-10-06 14:48:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
2016-11-03 15:57:50 +00:00
|
|
|
cordformation(MavenPublication) {
|
2016-10-06 14:48:40 +00:00
|
|
|
from components.java
|
|
|
|
groupId 'com.r3corda.plugins'
|
|
|
|
artifactId 'cordformation'
|
2016-11-03 15:57:50 +00:00
|
|
|
|
|
|
|
artifact sourceJar
|
|
|
|
artifact javadocJar
|
2016-10-06 14:48:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|