mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
19 lines
516 B
Groovy
19 lines
516 B
Groovy
apply plugin: 'groovy'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
|
|
description 'A small gradle plugin for adding some basic Quasar tasks and configurations to reduce build.gradle bloat.'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile gradleApi()
|
|
compile localGroovy()
|
|
|
|
// TypeSafe Config: for simple and human friendly config files.
|
|
// TODO: Add a common versions file between Corda and gradle plugins to de-duplicate this version number
|
|
compile "com.typesafe:config:1.3.1"
|
|
}
|
|
|