mirror of
https://github.com/corda/corda.git
synced 2024-12-20 21:43:14 +00:00
19 lines
345 B
Groovy
19 lines
345 B
Groovy
|
apply plugin: 'java'
|
||
|
apply plugin: 'net.corda.plugins.publish-utils'
|
||
|
|
||
|
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
|
||
|
}
|