corda/gradle-plugins/cordformation/build.gradle

19 lines
516 B
Groovy
Raw Normal View History

2016-10-06 14:48:40 +00:00
apply plugin: 'groovy'
apply plugin: 'net.corda.plugins.publish-utils'
2016-10-06 14:48:40 +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()
}
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"
2016-11-10 13:14:38 +00:00
}