2017-05-18 14:58:35 +00:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
2017-12-07 17:22:22 +00:00
|
|
|
apply plugin: 'com.jfrog.artifactory'
|
2017-05-18 14:58:35 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2017-06-28 01:21:19 +00:00
|
|
|
// This tracks the gradle plugins version and not Corda
|
|
|
|
version gradle_plugins_version
|
|
|
|
group 'net.corda.plugins'
|
|
|
|
|
2017-05-18 14:58:35 +00:00
|
|
|
dependencies {
|
2017-11-23 22:27:24 +00:00
|
|
|
// JSR 305: Nullability annotations
|
|
|
|
compile "com.google.code.findbugs:jsr305:$jsr305_version"
|
|
|
|
|
2017-05-18 14:58:35 +00:00
|
|
|
// TypeSafe Config: for simple and human friendly config files.
|
|
|
|
compile "com.typesafe:config:$typesafe_config_version"
|
|
|
|
}
|
2017-07-18 11:34:56 +00:00
|
|
|
|
|
|
|
publish {
|
|
|
|
name project.name
|
|
|
|
}
|