mirror of
https://github.com/corda/corda.git
synced 2024-12-22 22:32:26 +00:00
484cf75420
Added CorDapp gradle plugin written in Kotlin and bumped the version of gradle plugins to 2.0.0 to reflect that this backwards incompatible change is a part of the on going stabilisation of the Corda gradle plugin suite.
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
|
|
} |