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 smokeTestRuntimeOnly.extendsFrom runtimeOnly
} }
evaluationDependsOn(':node:capsule')
sourceSets { sourceSets {
integrationTest { integrationTest {
kotlin { kotlin {

View File

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

View File

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