mirror of
https://github.com/corda/corda.git
synced 2024-12-19 21:17:58 +00:00
1375084936
Gradle plugins are now able to be published to artifactory.
20 lines
383 B
Groovy
20 lines
383 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
description "Generates a summary of the artifact's public API"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile gradleApi()
|
|
compile "io.github.lukehutch:fast-classpath-scanner:2.7.0"
|
|
testCompile "junit:junit:4.12"
|
|
}
|
|
|
|
publish {
|
|
name project.name
|
|
}
|