2016-10-06 14:48:40 +00:00
|
|
|
apply plugin: 'groovy'
|
2016-12-05 17:37:37 +00:00
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
2016-10-06 14:48:40 +00:00
|
|
|
|
2016-12-05 17:37:37 +00:00
|
|
|
description 'A small gradle plugin for adding some basic Quasar tasks and configurations to reduce build.gradle bloat.'
|
2016-10-06 14:48:40 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2016-12-05 17:37:37 +00:00
|
|
|
dependencies {
|
|
|
|
compile gradleApi()
|
|
|
|
compile localGroovy()
|
2016-11-24 13:44:11 +00:00
|
|
|
|
2017-01-03 14:15:23 +00:00
|
|
|
// TypeSafe Config: for simple and human friendly config files.
|
2017-01-05 14:11:58 +00:00
|
|
|
// TODO: Add a common versions file between Corda and gradle plugins to de-duplicate this version number
|
|
|
|
compile "com.typesafe:config:1.3.1"
|
2016-11-10 13:14:38 +00:00
|
|
|
}
|
2016-12-05 17:37:37 +00:00
|
|
|
|