mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
b9f7c1a08a
* Tweak JUnit 5 configurations to keep vintage engine off compile classpaths. * Configure Gradle tests to use JUnit 5.
31 lines
953 B
Groovy
31 lines
953 B
Groovy
group 'com.r3cev.prototyping'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
compileKotlin {
|
|
kotlinOptions.suppressWarnings = true
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.suppressWarnings = true
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile project(':finance:contracts')
|
|
compile project(':finance:workflows')
|
|
|
|
// ObjectWeb Asm: a library for synthesising and working with JVM bytecode.
|
|
compile "org.ow2.asm:asm:$asm_version"
|
|
|
|
compile "com.google.guava:guava:$guava_version"
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
testImplementation "junit:junit:$junit_version"
|
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
|
testCompile project(':node-driver')
|
|
}
|