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
|
|
|
|
2016-12-05 17:37:37 +00:00
|
|
|
compile "com.typesafe:config:1.3.0"
|
2016-11-10 13:14:38 +00:00
|
|
|
}
|
2016-12-05 17:37:37 +00:00
|
|
|
|