Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release/os/5.2' into vkolomeyko/…
Browse files Browse the repository at this point in the history
…e2e-flake-investigation

# Conflicts:
#	gradle.properties
  • Loading branch information
vkolomeyko committed Dec 14, 2023
2 parents a1c8aaa + e79670d commit 6102e5d
Show file tree
Hide file tree
Showing 267 changed files with 2,356 additions and 912 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ private class CombinedWorkerParams {

@Option(names = ["--serviceEndpoint"], description = ["Internal REST endpoints for Corda workers"])
val workerEndpoints: Map<String, String> =
listOf("crypto", "verification", "uniqueness", "persistence", "tokenSelection")
listOf("crypto", "verification", "uniqueness", "persistence", "tokenSelection", "p2pLinkManager")
.associate { "endpoints.$it" to "localhost:7004" }
.toMap()
}
2 changes: 0 additions & 2 deletions applications/workers/release/crypto-worker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ dependencies {


testRuntimeOnly "org.apache.felix:org.apache.felix.framework:$felixVersion"
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"

// This puts the jdbc driver into the docker image in the /opt/jdbc-driver folder
// this folder can contain many jdbc drivers (and DataSourceFactory provider bundles).
Expand Down
2 changes: 0 additions & 2 deletions applications/workers/release/db-worker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ dependencies {
runtimeOnly project(':libs:tracing-impl')

testImplementation 'org.osgi:osgi.core'
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation project(':libs:application:addon')
testImplementation project(':libs:application:banner')
testImplementation project(":libs:lifecycle:lifecycle")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import net.corda.lifecycle.registry.LifecycleRegistry
import net.corda.osgi.api.Application
import net.corda.osgi.api.Shutdown
import net.corda.processors.p2p.gateway.GatewayProcessor
import net.corda.schema.configuration.BootConfig.BOOT_WORKER_SERVICE
import net.corda.tracing.configureTracing
import net.corda.tracing.shutdownTracing
import net.corda.web.api.WebServer
Expand All @@ -21,6 +22,7 @@ import org.osgi.service.component.annotations.Component
import org.osgi.service.component.annotations.Reference
import org.slf4j.LoggerFactory
import picocli.CommandLine
import picocli.CommandLine.Option

@Component
@Suppress("LongParameterList")
Expand Down Expand Up @@ -63,7 +65,8 @@ class GatewayWorker @Activate constructor(
val config = WorkerHelpers.getBootstrapConfig(
secretsServiceFactoryResolver,
params.defaultParams,
configurationValidatorFactory.createConfigValidator()
configurationValidatorFactory.createConfigValidator(),
listOf(WorkerHelpers.createConfigFromParams(BOOT_WORKER_SERVICE, params.workerEndpoints)),
)
webServer.start(params.defaultParams.workerServerPort)
gatewayProcessor.start(config)
Expand All @@ -80,4 +83,11 @@ class GatewayWorker @Activate constructor(
private class GatewayWorkerParams {
@CommandLine.Mixin
var defaultParams = DefaultWorkerParams()

@Option(
names = ["--serviceEndpoint"],
description = ["Internal REST endpoints for Corda workers"],
required = true,
)
val workerEndpoints: Map<String, String> = emptyMap()
}
2 changes: 0 additions & 2 deletions applications/workers/release/persistence-worker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ dependencies {
runtimeOnly project(':libs:web:web-impl')

testImplementation 'org.osgi:osgi.core'
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation project(':libs:application:addon')
testImplementation project(':libs:application:banner')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ dependencies {
runtimeOnly project(':libs:tracing-impl')

testImplementation 'org.osgi:osgi.core'
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation project(':libs:application:addon')
testImplementation project(':libs:application:banner')

Expand Down
2 changes: 0 additions & 2 deletions applications/workers/release/uniqueness-worker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ dependencies {
runtimeOnly project(':libs:tracing-impl')

testImplementation 'org.osgi:osgi.core'
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation project(':libs:application:addon')
testImplementation project(':libs:application:banner')

Expand Down
2 changes: 0 additions & 2 deletions applications/workers/worker-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ dependencies {
runtimeOnly project(':libs:web:web-impl')
runtimeOnly "org.apache.commons:commons-lang3:$commonsLangVersion"

testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation project(":libs:web:web-impl")

testRuntimeOnly 'org.osgi:osgi.core'
Expand Down
5 changes: 2 additions & 3 deletions applications/workers/workers-smoketest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ kotlin {

dependencies {
// NO CORDA DEPENDENCIES!!
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"

smokeTestImplementation "net.corda:corda-avro-schema:$cordaApiVersion"
// Avoid having the schema names and keys scattered across projects
smokeTestImplementation "net.corda:corda-config-schema:$cordaApiVersion"
Expand Down Expand Up @@ -82,7 +80,8 @@ dependencies {
smokeTestImplementation project(":testing:packaging-test-utilities")
smokeTestImplementation project(':testing:test-utilities')
smokeTestImplementation project(":testing:uniqueness:uniqueness-utilities")
smokeTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
smokeTestImplementation libs.bundles.test
smokeTestRuntimeOnly libs.bundles.test.runtime
smokeTestRuntimeOnly "org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion"
}

Expand Down
24 changes: 8 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ buildscript {
}

plugins {
id 'org.jetbrains.kotlin.jvm' apply false
id 'org.jetbrains.kotlin.plugin.allopen' apply false
id 'org.jetbrains.kotlin.plugin.jpa' apply false
alias libs.plugins.kotlin.jvm apply false
alias libs.plugins.kotlin.allopen apply false
alias libs.plugins.kotlin.jpa apply false
id 'io.gitlab.arturbosch.detekt' apply false
id 'biz.aQute.bnd.builder' apply false
id 'com.adarshr.test-logger' version '3.2.0' apply false
Expand Down Expand Up @@ -278,14 +278,6 @@ allprojects {

shouldRunAfter tasks.named('test', Test)
}

dependencies {
// Test utilities
testImplementation "org.assertj:assertj-core:$assertjVersion"
testImplementation "org.junit.jupiter:junit-jupiter:$junit5Version"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
}

tasks.register('createSBOMZip', Zip) {
Expand Down Expand Up @@ -326,11 +318,11 @@ if (project.hasProperty('generateSBOM')) {
void configureKotlinForOSGi(Configuration configuration) {
configuration.resolutionStrategy {
dependencySubstitution {
substitute module('org.jetbrains.kotlin:kotlin-stdlib-jdk8') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion")
substitute module('org.jetbrains.kotlin:kotlin-stdlib-jdk7') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion")
substitute module('org.jetbrains.kotlin:kotlin-stdlib-common') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion")
substitute module('org.jetbrains.kotlin:kotlin-stdlib') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion")
substitute module('org.jetbrains.kotlin:kotlin-reflect') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion")
substitute module('org.jetbrains.kotlin:kotlin-stdlib-jdk8') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:${libs.versions.kotlinVersion.get()}")
substitute module('org.jetbrains.kotlin:kotlin-stdlib-jdk7') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:${libs.versions.kotlinVersion.get()}")
substitute module('org.jetbrains.kotlin:kotlin-stdlib-common') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:${libs.versions.kotlinVersion.get()}")
substitute module('org.jetbrains.kotlin:kotlin-stdlib') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:${libs.versions.kotlinVersion.get()}")
substitute module('org.jetbrains.kotlin:kotlin-reflect') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:${libs.versions.kotlinVersion.get()}")
}
}
}
Expand Down
7 changes: 7 additions & 0 deletions buildSrc/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dependencyResolutionManagement {
versionCatalogs {
create('libs', { from(files("../gradle/libs.versions.toml")) })
}
}

rootProject.name = 'buildSrc'
10 changes: 5 additions & 5 deletions buildSrc/src/main/groovy/corda.common-app.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ plugins {
def applyDependencySubstitution = { Configuration conf ->
conf.resolutionStrategy.dependencySubstitution {
//Replace Kotlin stdlib
substitute module('org.jetbrains.kotlin:kotlin-stdlib-jdk8') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion")
substitute module('org.jetbrains.kotlin:kotlin-stdlib-jdk7') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion")
substitute module('org.jetbrains.kotlin:kotlin-stdlib-common') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion")
substitute module('org.jetbrains.kotlin:kotlin-stdlib') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion")
substitute module('org.jetbrains.kotlin:kotlin-reflect') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion")
substitute module('org.jetbrains.kotlin:kotlin-stdlib-jdk8') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:${libs.versions.kotlinVersion.get()}")
substitute module('org.jetbrains.kotlin:kotlin-stdlib-jdk7') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:${libs.versions.kotlinVersion.get()}")
substitute module('org.jetbrains.kotlin:kotlin-stdlib-common') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:${libs.versions.kotlinVersion.get()}")
substitute module('org.jetbrains.kotlin:kotlin-stdlib') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:${libs.versions.kotlinVersion.get()}")
substitute module('org.jetbrains.kotlin:kotlin-reflect') using module("org.jetbrains.kotlin:kotlin-osgi-bundle:${libs.versions.kotlinVersion.get()}")
}
}

Expand Down
9 changes: 4 additions & 5 deletions buildSrc/src/main/groovy/corda.common-library.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

plugins {
id 'java-library'
id 'org.jetbrains.kotlin.jvm'
id 'biz.aQute.bnd.builder'
}

Expand Down Expand Up @@ -39,12 +40,10 @@ configurations {

dependencies {
compileOnly "org.jetbrains:annotations:$jetbrainsAnnotationsVersion"
testImplementation "org.junit.jupiter:junit-jupiter:$junit5Version"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation libs.bundles.test
testRuntimeOnly libs.bundles.test.runtime

integrationTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
integrationTestRuntimeOnly 'org.junit.platform:junit-platform-launcher'
integrationTestRuntimeOnly libs.bundles.test.runtime
}

tasks.named('jar', Jar) {
Expand Down
5 changes: 2 additions & 3 deletions buildSrc/src/main/groovy/corda.osgi-test-conventions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,9 @@ dependencies {
}
integrationTestRuntimeOnly files(configurations.quasarBundles)

integrationTestImplementation "org.junit.jupiter:junit-jupiter:$junit5Version"
integrationTestImplementation libs.bundles.test
integrationTestImplementation "org.osgi:org.osgi.test.junit5:$osgiTestJunit5Version"
integrationTestRuntimeOnly 'org.junit.platform:junit-platform-launcher'
integrationTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
integrationTestRuntimeOnly libs.bundles.test.runtime
integrationTestRuntimeOnly "org.apache.felix:org.apache.felix.framework:$felixVersion"
integrationTestRuntimeOnly "org.apache.felix:org.apache.felix.scr:$felixScrVersion"
integrationTestRuntimeOnly "org.osgi:org.osgi.service.component:$osgiServiceComponentVersion"
Expand Down
4 changes: 2 additions & 2 deletions charts/corda/templates/workers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
{{- include "corda.worker" ( list $ .Values.workers.verification "verification" ) }}
{{- include "corda.worker" ( list $ .Values.workers.membership "membership" ) }}
{{- include "corda.worker" ( list $ .Values.workers.p2pGateway "p2pGateway"
( dict "httpPort" 8080 )
) }}
( dict "httpPort" 8080 "servicesAccessed" ( list "p2pLinkManager" ) )
) }}
{{- include "corda.worker" ( list $ .Values.workers.p2pLinkManager "p2pLinkManager" ) }}
{{- include "corda.worker" ( list $ .Values.workers.persistence "persistence"
( dict "clusterDbAccess" true )
Expand Down
2 changes: 0 additions & 2 deletions components/chunking/chunk-db-write-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ dependencies {
integrationTestImplementation project(':libs:platform-info')

testImplementation "com.google.jimfs:jimfs:$jimfsVersion"
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"

testRuntimeOnly "org.hsqldb:hsqldb:$hsqldbVersion"
testRuntimeOnly "org.postgresql:postgresql:$postgresDriverVersion"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ dependencies {

testImplementation project(":libs:lifecycle:lifecycle-impl")
testImplementation project(":libs:lifecycle:lifecycle-test-impl")
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
integrationTestImplementation project(":testing:db-message-bus-testkit")
integrationTestImplementation project(":testing:test-utilities")
integrationTestImplementation project(":libs:lifecycle:registry")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,4 @@ dependencies {
implementation 'net.corda:corda-topic-schema'
implementation 'org.jetbrains.kotlin:kotlin-osgi-bundle'
implementation "org.slf4j:slf4j-api:$slf4jVersion"

testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,4 @@ dependencies {
implementation 'net.corda:corda-topic-schema'
implementation 'org.jetbrains.kotlin:kotlin-osgi-bundle'
implementation 'org.slf4j:slf4j-api'

testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
}
2 changes: 0 additions & 2 deletions components/crypto/crypto-client-hsm-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ dependencies {
implementation project(":libs:messaging:messaging")
implementation project(":libs:utilities")

testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"

testImplementation project(":components:crypto:crypto-component-test-utils")

testRuntimeOnly "org.slf4j:slf4j-simple:$slf4jVersion"
Expand Down
2 changes: 0 additions & 2 deletions components/crypto/crypto-client-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ dependencies {
implementation project(":libs:messaging:messaging")
implementation project(":libs:utilities")

testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"

testImplementation project(":components:crypto:crypto-component-test-utils")

testRuntimeOnly "org.slf4j:slf4j-simple:$slf4jVersion"
Expand Down
4 changes: 2 additions & 2 deletions components/crypto/crypto-component-test-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
api project(":libs:lifecycle:registry")
api project(":testing:test-utilities")

api "org.assertj:assertj-core:$assertjVersion"
api "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
api libs.assertj.core
api libs.mockito.kotlin
}

5 changes: 0 additions & 5 deletions components/crypto/crypto-hes-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ dependencies {
implementation project(":components:crypto:crypto-component-core-impl")
implementation project(":libs:crypto:crypto-core")

testImplementation "org.assertj:assertj-core:$assertjVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"

testImplementation project(":components:crypto:crypto-component-test-utils")
testImplementation project(":libs:crypto:cipher-suite-impl")
testImplementation project(":testing:test-utilities")
Expand Down
6 changes: 0 additions & 6 deletions components/crypto/crypto-persistence/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ dependencies {
implementation project(":libs:metrics")
implementation project(':libs:virtual-node:virtual-node-info')

testImplementation "org.assertj:assertj-core:$assertjVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation "org.junit.jupiter:junit-jupiter:$junit5Version"

}


2 changes: 0 additions & 2 deletions components/crypto/crypto-rest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,5 @@ dependencies {
implementation "net.corda:corda-topic-schema"
implementation 'org.jetbrains.kotlin:kotlin-osgi-bundle'

testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation project(':libs:lifecycle:lifecycle-test-impl')
}
1 change: 0 additions & 1 deletion components/crypto/crypto-service-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ dependencies {

testImplementation project(":libs:cache:cache-caffeine")
testImplementation 'net.corda:corda-application'
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"
testImplementation project(":components:crypto:crypto-component-test-utils")

testImplementation project(":components:crypto:crypto-persistence-model")
Expand Down
1 change: 0 additions & 1 deletion components/crypto/crypto-softhsm-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ dependencies {

implementation platform("net.corda:corda-api:$cordaApiVersion")

testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"
testImplementation "com.github.ben-manes.caffeine:caffeine:$caffeineVersion"
testImplementation project(":components:crypto:crypto-component-test-utils")
testImplementation project(":components:crypto:crypto-hes-impl")
Expand Down
2 changes: 0 additions & 2 deletions components/db/db-connection-manager-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ dependencies {
implementation "com.typesafe:config:$typeSafeConfigVersion"
implementation "org.slf4j:slf4j-api:$slf4jVersion"

testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testRuntimeOnly "org.osgi:osgi.core"

integrationTestImplementation project(':libs:db:db-admin')
Expand Down
2 changes: 0 additions & 2 deletions components/domino-logic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ dependencies {

implementation "com.typesafe:config:$typeSafeConfigVersion"

testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation "org.apache.logging.log4j:log4j-core:$log4jVersion"
testRuntimeOnly "org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion"
}
4 changes: 0 additions & 4 deletions components/external-messaging-services/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,4 @@ dependencies {
implementation project(':libs:messaging:message-bus')
implementation project(":libs:utilities")
implementation project(":libs:virtual-node:virtual-node-info")

testImplementation "org.assertj:assertj-core:$assertjVersion"
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
}
3 changes: 0 additions & 3 deletions components/flow/flow-mapper-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ dependencies {
implementation "net.corda:corda-config-schema"
implementation "net.corda:corda-topic-schema"

testImplementation "org.assertj:assertj-core:$assertjVersion"
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation project(":testing:flow:flow-utilities")
testImplementation project(":libs:flows:flow-utils")
}
Expand Down
4 changes: 0 additions & 4 deletions components/flow/flow-mapper-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ dependencies {

runtimeOnly project(":libs:web:web-impl")

testImplementation "org.assertj:assertj-core:$assertjVersion"
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"

testImplementation project(":libs:lifecycle:lifecycle-test-impl")
testImplementation project(":testing:test-utilities")
testImplementation project(":testing:flow:flow-utilities")
Expand Down
Loading

0 comments on commit 6102e5d

Please sign in to comment.