This repository contains multiple sample apps, from CorDapps that help you get started, all the way to demonstrating specific features and advanced usage.
74
stars
155
forks
source link
ENT-11793: Fix integration tests in JDK17 CorDapps #111
Integration tests were missed in previous PRs and were not verified.
For integration tests to work correctly the following changes were needed:
Gradle syntax update: integrationTestCompile and integrationTestRuntime updated to integrationTestImplementation and integrationTestRuntimeOnly so the integration tests can use tests' dependencies, as per Gradle docs
add missing dependencies for integration tests
add add-opens JVM args to integration tests where necessary
upgrade multioutput-transaction CorDapp to JDK17 (missed in previous PRs)
Integration tests were missed in previous PRs and were not verified. For integration tests to work correctly the following changes were needed:
integrationTestCompile
andintegrationTestRuntime
updated tointegrationTestImplementation
andintegrationTestRuntimeOnly
so the integration tests can use tests' dependencies, as per Gradle docsmultioutput-transaction
CorDapp to JDK17 (missed in previous PRs)