mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
08cbcac40c
Core corda publications and JARs now have cord or corda at the start (excluding gradle plugins). Removed an unnecessary dependency on test-utils in node-schemas to prevent an evaluation order bug in gradle.
34 lines
729 B
Groovy
34 lines
729 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
|
|
description 'Corda node database schemas'
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
|
testCompile "junit:junit:$junit_version"
|
|
|
|
// Requery: SQL based query & persistence for Kotlin
|
|
kapt "io.requery:requery-processor:$requery_version"
|
|
|
|
// For H2 database support in persistence
|
|
testCompile "com.h2database:h2:$h2_version"
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
kotlin {
|
|
srcDir "$buildDir/generated/source/kapt/main"
|
|
}
|
|
}
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-node-schemas'
|
|
}
|
|
|
|
publish {
|
|
name = jar.baseName
|
|
} |