mirror of
https://github.com/corda/corda.git
synced 2024-12-21 13:57:54 +00:00
15 lines
327 B
Groovy
15 lines
327 B
Groovy
apply plugin: 'groovy'
|
|
apply plugin: 'maven-publish'
|
|
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()
|
|
}
|