2016-09-30 12:47:24 +00: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 12:47:24 +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-09-30 09:58:03 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2016-12-05 17:37:37 +00:00
|
|
|
dependencies {
|
|
|
|
compile gradleApi()
|
|
|
|
compile localGroovy()
|
2017-01-03 14:15:23 +00:00
|
|
|
}
|
2017-07-18 11:34:56 +00:00
|
|
|
|
|
|
|
publish {
|
|
|
|
name project.name
|
|
|
|
}
|