2016-09-30 13:47:24 +01:00
|
|
|
apply plugin: 'groovy'
|
2016-11-18 12:54:17 +00:00
|
|
|
apply plugin: 'maven-publish'
|
2016-12-05 17:37:37 +00:00
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
2016-09-30 13:47:24 +01: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-09-30 10:58:03 +01:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2016-12-05 17:37:37 +00:00
|
|
|
dependencies {
|
|
|
|
compile gradleApi()
|
|
|
|
compile localGroovy()
|
2017-01-03 15:15:23 +01:00
|
|
|
}
|
2017-07-18 12:34:56 +01:00
|
|
|
|
|
|
|
publish {
|
|
|
|
name project.name
|
|
|
|
}
|