mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
20 lines
374 B
Groovy
20 lines
374 B
Groovy
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
apply plugin: 'corda.common-publishing'
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-common-validation'
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
artifactId jar.baseName
|
|
from components.java
|
|
}
|
|
}
|
|
}
|