mirror of
https://github.com/corda/corda.git
synced 2024-12-27 16:28:56 +00:00
5106b01832
* Update JarFilter to remove certain annotations from primary constructors. * Enhance unit tests for deleting constructors. * Update the documentation to explain how to handle non-deterministic default constructor parameters. * Reduce the base logging level of SanitisingTransformer to DEBUG. * Simplify the execution of repeatable ClassVisitors. * Simplify Gradle usage slightly. * Add test for deterministic UniqueIdentifier. * Update README to cover handling default parameters.
20 lines
778 B
Groovy
20 lines
778 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':core-deterministic', configuration: 'runtimeArtifacts')
|
|
testCompile project(path: ':serialization-deterministic', configuration: 'runtimeArtifacts')
|
|
testCompile project(path: ':core-deterministic:testing:data', configuration: 'testData')
|
|
testCompile project(':core-deterministic:testing:common')
|
|
testCompile(project(':finance')) {
|
|
transitive = false
|
|
}
|
|
|
|
testCompile "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
|
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
|
testCompile "org.assertj:assertj-core:$assertj_version"
|
|
testCompile "junit:junit:$junit_version"
|
|
}
|
|
|
|
// This module has no artifact and only contains tests.
|
|
jar.enabled = false
|