mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
51 lines
1.5 KiB
Groovy
51 lines
1.5 KiB
Groovy
apply plugin: 'kotlin'
|
|
// Java Persistence API support: create no-arg constructor
|
|
// see: http://stackoverflow.com/questions/32038177/kotlin-with-jpa-default-constructor-hell
|
|
apply plugin: 'kotlin-jpa'
|
|
apply plugin: CanonicalizerPlugin
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
|
|
description 'Corda finance modules'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven {
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
|
}
|
|
jcenter()
|
|
maven {
|
|
url 'https://dl.bintray.com/kotlin/exposed'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
|
|
testCompile project(':test-utils')
|
|
testCompile project(':core').sourceSets.test.output
|
|
testCompile "junit:junit:$junit_version"
|
|
|
|
// TODO: Upgrade to junit-quickcheck 0.8, once it is released,
|
|
// because it depends on org.javassist:javassist instead
|
|
// of javassist:javassist.
|
|
testCompile "com.pholser:junit-quickcheck-core:$quickcheck_version"
|
|
testCompile "com.pholser:junit-quickcheck-generators:$quickcheck_version"
|
|
}
|
|
|
|
sourceSets {
|
|
test {
|
|
resources {
|
|
srcDir "../config/test"
|
|
}
|
|
}
|
|
}
|
|
|
|
configurations.testCompile {
|
|
// Excluding javassist:javassist because it clashes with Hibernate's
|
|
// transitive org.javassist:javassist dependency.
|
|
// TODO: Remove this exclusion once junit-quickcheck 0.8 is released.
|
|
exclude group: 'javassist', module: 'javassist'
|
|
}
|