mirror of
https://github.com/corda/corda.git
synced 2024-12-28 08:48:57 +00:00
1375084936
Gradle plugins are now able to be published to artifactory.
19 lines
391 B
Groovy
19 lines
391 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
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
|
|
} |