From 4e177af411cc38e227cb36277c650b0498ce4045 Mon Sep 17 00:00:00 2001 From: Rob Dawson Date: Thu, 7 Mar 2019 12:14:59 +0100 Subject: [PATCH] Added integration test deps. --- consensus/ibft/build.gradle | 1 + ethereum/jsonrpc/build.gradle | 1 + 2 files changed, 2 insertions(+) diff --git a/consensus/ibft/build.gradle b/consensus/ibft/build.gradle index 0724edba26..e1fb27ca95 100644 --- a/consensus/ibft/build.gradle +++ b/consensus/ibft/build.gradle @@ -51,6 +51,7 @@ dependencies { integrationTestImplementation 'junit:junit' integrationTestImplementation 'org.assertj:assertj-core' integrationTestImplementation 'org.mockito:mockito-core' + integrationTestImplementation project(':testutil') testImplementation 'junit:junit' testImplementation 'org.awaitility:awaitility' diff --git a/ethereum/jsonrpc/build.gradle b/ethereum/jsonrpc/build.gradle index 5824456d83..1f11be08d2 100644 --- a/ethereum/jsonrpc/build.gradle +++ b/ethereum/jsonrpc/build.gradle @@ -62,6 +62,7 @@ dependencies { integrationTestImplementation project(path: ':config', configuration: 'testSupportArtifacts') integrationTestImplementation project(path: ':ethereum:core', configuration: 'testSupportArtifacts') integrationTestImplementation project(':services:kvstore') + integrationTestImplementation project(':testutil') integrationTestImplementation 'junit:junit' integrationTestImplementation 'org.assertj:assertj-core'