mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
1375084936
Gradle plugins are now able to be published to artifactory.
20 lines
400 B
Groovy
20 lines
400 B
Groovy
apply plugin: 'groovy'
|
|
apply plugin: 'maven-publish'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
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()
|
|
}
|
|
|
|
publish {
|
|
name project.name
|
|
}
|