CORDA-3127: Move evaluationDependsOn() from core to core-tests. (#5349)

* CORDA-3127: Move evaluationDependsOn() from core to core-tests.

* Increase JVM memory for node unit tests to 3G.
This commit is contained in:
Chris Rankin 2019-08-02 09:05:19 +01:00 committed by Matthew Nesbit
parent 9166755954
commit 813ff39eaa
3 changed files with 3 additions and 3 deletions

View File

@ -14,6 +14,8 @@ configurations {
smokeTestRuntimeOnly.extendsFrom runtimeOnly
}
evaluationDependsOn(':node:capsule')
sourceSets {
integrationTest {
kotlin {

View File

@ -7,8 +7,6 @@ apply plugin: 'com.jfrog.artifactory'
description 'Corda core'
evaluationDependsOn(':node:capsule')
configurations {
integrationTestCompile.extendsFrom testCompile
integrationTestRuntimeOnly.extendsFrom testRuntimeOnly

View File

@ -209,7 +209,7 @@ tasks.withType(JavaCompile) {
}
test {
maxHeapSize = "2g"
maxHeapSize = "3g"
maxParallelForks = (System.env.CORDA_NODE_TESTING_FORKS == null) ? 1 : "$System.env.CORDA_NODE_TESTING_FORKS".toInteger()
}