mirror of
https://github.com/corda/corda.git
synced 2024-12-26 08:01:09 +00:00
18 lines
353 B
Groovy
18 lines
353 B
Groovy
|
apply plugin: 'kotlin'
|
||
|
apply plugin: 'net.corda.plugins.publish-utils'
|
||
|
|
||
|
description 'Turns a project into a cordapp project that produces cordapp fat JARs'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile gradleApi()
|
||
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
|
||
|
}
|
||
|
|
||
|
publish {
|
||
|
name project.name
|
||
|
}
|