mirror of
https://github.com/corda/corda.git
synced 2024-12-19 21:17:58 +00:00
f30ba33929
The node now sends a transaction to the verifier if any of its attachments were compiled with Kotlin 1.2 (the net.corda.node.verification.external system property has been removed). It uses kotlinx-metadata to read the Kotlin metadata in the attachment to determine this. For now this scanning is done each time the attachment is loaded from the database. The existing external verification integration tests were converted into smoke tests so that 4.11 nodes could be involved. This required various improvements to NodeProcess.Factory. A new JAVA_8_HOME environment variable, pointing to JDK 8, is required to run these tests. There is still some follow-up work that needs to be done: Sending transactions from a 4.11 node to a 4.12 node works, but not the other way round. A new WireTransaction component group needs to be introduced for storing 4.12 attachments so that they can be safely ignored by 4.11 nodes, and the 4.12 node needs to be able to load both 4.11 and 4.12 versions of the same contracts CorDapp so that they can be both attached to the transaction. Even though attachments are cached when retrieved from the database, the Kotlin metadata version should be stored in the attachments db table, rather than being scanned each time. Finally, VerificationService was refactored into NodeVerificationSupport and can be passed into SignedTransaction.verifyInternal, instead of needing the much heavier VerifyingServiceHub. This makes it easier for internal tools to verify transactions and spawn the verifier if necessary.
344 lines
14 KiB
Groovy
344 lines
14 KiB
Groovy
plugins {
|
|
id 'com.google.cloud.tools.jib' version '0.9.4'
|
|
}
|
|
|
|
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
// Java Persistence API support: create no-arg constructor
|
|
// see: http://stackoverflow.com/questions/32038177/kotlin-with-jpa-default-constructor-hell
|
|
apply plugin: 'org.jetbrains.kotlin.plugin.jpa'
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
apply plugin: 'corda.common-publishing'
|
|
|
|
description 'Corda node modules'
|
|
|
|
ext {
|
|
Properties constants = new Properties()
|
|
file("$rootDir/constants.properties").withInputStream { constants.load(it) }
|
|
|
|
jolokia_version = constants.getProperty('jolokiaAgentVersion')
|
|
}
|
|
|
|
//noinspection GroovyAssignabilityCheck
|
|
configurations {
|
|
integrationTestImplementation.extendsFrom testImplementation
|
|
integrationTestRuntimeOnly.extendsFrom testRuntimeOnly
|
|
|
|
slowIntegrationTestCompile.extendsFrom testImplementation
|
|
slowIntegrationTestRuntimeOnly.extendsFrom testRuntimeOnly
|
|
}
|
|
|
|
sourceSets {
|
|
integrationTest {
|
|
kotlin {
|
|
compileClasspath += main.output + test.output
|
|
runtimeClasspath += main.output + test.output
|
|
srcDir file('src/integration-test/kotlin')
|
|
}
|
|
java {
|
|
compileClasspath += main.output + test.output
|
|
runtimeClasspath += main.output + test.output
|
|
srcDir file('src/integration-test/java')
|
|
}
|
|
resources {
|
|
srcDir file('src/integration-test/resources')
|
|
}
|
|
}
|
|
slowIntegrationTest {
|
|
kotlin {
|
|
compileClasspath += main.output + test.output
|
|
runtimeClasspath += main.output + test.output
|
|
srcDir file('src/integration-test-slow/kotlin')
|
|
}
|
|
java {
|
|
compileClasspath += main.output + test.output
|
|
runtimeClasspath += main.output + test.output
|
|
srcDir file('src/integration-test-slow/java')
|
|
}
|
|
resources {
|
|
srcDir file('src/integration-test-slow/resources')
|
|
}
|
|
}
|
|
}
|
|
|
|
jib.container {
|
|
mainClass = "net.corda.node.Corda"
|
|
args = ['--log-to-console', '--no-local-shell', '--config-file=/config/node.conf']
|
|
// The Groovy string needs to be converted to a `java.lang.String` below.
|
|
jvmFlags = ['-Xmx1g', "-javaagent:/app/libs/quasar-core-${quasar_version}.jar".toString()]
|
|
}
|
|
|
|
// Use manual resource copying of log4j2.xml rather than source sets.
|
|
// This prevents problems in IntelliJ with regard to duplicate source roots.
|
|
processResources {
|
|
from file("$rootDir/config/dev/log4j2.xml")
|
|
from file("$rootDir/config/dev/jolokia-access.xml")
|
|
from(tasks.getByPath(":verifier:shadowJar")) {
|
|
into("net/corda/node/verification")
|
|
rename { "external-verifier.jar" }
|
|
}
|
|
}
|
|
|
|
processTestResources {
|
|
from file("$rootDir/config/test/jolokia-access.xml")
|
|
}
|
|
|
|
// To find potential version conflicts, run "gradle htmlDependencyReport" and then look in
|
|
// build/reports/project/dependencies/index.html for green highlighted parts of the tree.
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation project(':node-api')
|
|
implementation project(':client:rpc')
|
|
implementation project(':client:jackson')
|
|
implementation project(':tools:cliutils')
|
|
implementation project(':common-validation')
|
|
implementation project(':common-configuration-parsing')
|
|
implementation project(':common-logging')
|
|
implementation project(':serialization')
|
|
|
|
implementation "io.opentelemetry:opentelemetry-api:${open_telemetry_version}"
|
|
// Backwards compatibility goo: Apps expect confidential-identities to be loaded by default.
|
|
// We could eventually gate this on a target-version check.
|
|
implementation project(':confidential-identities')
|
|
|
|
// Log4J: logging framework (with SLF4J bindings)
|
|
implementation "org.apache.logging.log4j:log4j-slf4j-impl:${log4j_version}"
|
|
implementation "org.apache.logging.log4j:log4j-web:${log4j_version}"
|
|
implementation "org.slf4j:jul-to-slf4j:$slf4j_version"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
|
|
|
implementation "org.fusesource.jansi:jansi:$jansi_version"
|
|
implementation "com.google.guava:guava:$guava_version"
|
|
implementation "commons-io:commons-io:$commons_io_version"
|
|
|
|
// For caches rather than guava
|
|
implementation "com.github.ben-manes.caffeine:caffeine:$caffeine_version"
|
|
|
|
// For async logging
|
|
implementation "com.lmax:disruptor:$disruptor_version"
|
|
|
|
// Artemis: for reliable p2p message queues.
|
|
// TODO: remove the forced update of commons-collections and beanutils when artemis updates them
|
|
implementation "org.apache.commons:commons-collections4:${commons_collections_version}"
|
|
implementation "commons-beanutils:commons-beanutils:${beanutils_version}"
|
|
implementation("org.apache.activemq:artemis-server:${artemis_version}") {
|
|
exclude group: 'org.apache.commons', module: 'commons-dbcp2'
|
|
exclude group: 'org.jgroups', module: 'jgroups'
|
|
}
|
|
implementation("org.apache.activemq:artemis-core-client:${artemis_version}") {
|
|
exclude group: 'org.jgroups', module: 'jgroups'
|
|
}
|
|
// Bouncy castle support needed for X509 certificate manipulation
|
|
implementation "org.bouncycastle:bcprov-jdk18on:${bouncycastle_version}"
|
|
implementation "org.bouncycastle:bcpkix-jdk18on:${bouncycastle_version}"
|
|
|
|
implementation "com.esotericsoftware:kryo:$kryo_version"
|
|
|
|
implementation "com.fasterxml.jackson.core:jackson-annotations:${jackson_version}"
|
|
implementation "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
|
|
|
|
runtimeOnly("org.apache.activemq:artemis-amqp-protocol:${artemis_version}") {
|
|
// Gains our proton-j version from core module.
|
|
exclude group: 'org.apache.qpid', module: 'proton-j'
|
|
exclude group: 'org.jgroups', module: 'jgroups'
|
|
}
|
|
|
|
// Manifests: for reading stuff from the manifest file
|
|
implementation "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
|
|
|
// Coda Hale's Metrics: for monitoring of key statistics
|
|
implementation "io.dropwizard.metrics:metrics-jmx:$metrics_version"
|
|
implementation "io.github.classgraph:classgraph:$class_graph_version"
|
|
implementation "org.liquibase:liquibase-core:$liquibase_version"
|
|
|
|
// TypeSafe Config: for simple and human friendly config files.
|
|
implementation "com.typesafe:config:$typesafe_config_version"
|
|
|
|
implementation "io.reactivex:rxjava:$rxjava_version"
|
|
|
|
implementation("org.apache.activemq:artemis-amqp-protocol:${artemis_version}") {
|
|
// Gains our proton-j version from core module.
|
|
exclude group: 'org.apache.qpid', module: 'proton-j'
|
|
exclude group: 'org.jgroups', module: 'jgroups'
|
|
}
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
testImplementation "junit:junit:$junit_version"
|
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
|
|
|
// Unit testing helpers.
|
|
testImplementation "org.assertj:assertj-core:${assertj_version}"
|
|
testImplementation project(':node-driver')
|
|
testImplementation project(':core-test-utils')
|
|
testImplementation project(':test-utils')
|
|
testImplementation project(':client:jfx')
|
|
testImplementation project(':finance:contracts')
|
|
testImplementation project(':finance:workflows')
|
|
|
|
// sample test schemas
|
|
testImplementation project(path: ':finance:contracts', configuration: 'testArtifacts')
|
|
|
|
// For H2 database support in persistence
|
|
implementation "com.h2database:h2:$h2_version"
|
|
|
|
// SQL connection pooling library
|
|
implementation "com.zaxxer:HikariCP:${hikari_version}"
|
|
|
|
// Hibernate: an object relational mapper for writing state objects to the database automatically.
|
|
implementation "org.hibernate:hibernate-core:$hibernate_version"
|
|
implementation "org.hibernate:hibernate-java8:$hibernate_version"
|
|
|
|
// OkHTTP: Simple HTTP library.
|
|
implementation "com.squareup.okhttp3:okhttp:$okhttp_version"
|
|
|
|
// Apache Shiro: authentication, authorization and session management.
|
|
implementation "org.apache.shiro:shiro-core:${shiro_version}"
|
|
|
|
//Picocli for command line interface
|
|
implementation "info.picocli:picocli:$picocli_version"
|
|
|
|
integrationTestImplementation project(":testing:cordapps:dbfailure:dbfcontracts")
|
|
|
|
// Integration test helpers
|
|
integrationTestImplementation "de.javakaffee:kryo-serializers:$kryo_serializer_version"
|
|
integrationTestImplementation "junit:junit:$junit_version"
|
|
integrationTestImplementation "org.assertj:assertj-core:${assertj_version}"
|
|
integrationTestImplementation "org.apache.qpid:qpid-jms-client:${protonj_version}"
|
|
integrationTestImplementation "net.i2p.crypto:eddsa:$eddsa_version"
|
|
|
|
// BFT-Smart dependencies
|
|
implementation 'com.github.bft-smart:library:master-v1.1-beta-g6215ec8-87'
|
|
|
|
// Java Atomix: RAFT library
|
|
implementation 'io.atomix.copycat:copycat-client:1.2.3'
|
|
implementation 'io.atomix.copycat:copycat-server:1.2.3'
|
|
implementation 'io.atomix.catalyst:catalyst-netty:1.1.2'
|
|
|
|
// Jetty dependencies for NetworkMapClient test.
|
|
// Web stuff: for HTTP[S] servlets
|
|
testImplementation "org.hamcrest:hamcrest-library:2.1"
|
|
testImplementation "org.eclipse.jetty:jetty-servlet:${jetty_version}"
|
|
testImplementation "org.eclipse.jetty:jetty-webapp:${jetty_version}"
|
|
testImplementation "javax.servlet:javax.servlet-api:${servlet_version}"
|
|
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockito_kotlin_version"
|
|
testImplementation "com.google.jimfs:jimfs:1.1"
|
|
testImplementation "co.paralleluniverse:quasar-core:$quasar_version"
|
|
testImplementation "com.natpryce:hamkrest:$hamkrest_version"
|
|
|
|
// Jersey for JAX-RS implementation for use in Jetty
|
|
testImplementation "org.glassfish.jersey.core:jersey-server:${jersey_version}"
|
|
testImplementation "org.glassfish.jersey.containers:jersey-container-servlet-core:${jersey_version}"
|
|
testImplementation "org.glassfish.jersey.containers:jersey-container-jetty-http:${jersey_version}"
|
|
|
|
// Jolokia JVM monitoring agent, required to push logs through slf4j
|
|
implementation "org.jolokia:jolokia-jvm:${jolokia_version}:agent"
|
|
// Optional New Relic JVM reporter, used to push metrics to the configured account associated with a newrelic.yml configuration. See https://mvnrepository.com/artifact/com.palominolabs.metrics/metrics-new-relic
|
|
implementation "com.palominolabs.metrics:metrics-new-relic:${metrics_new_relic_version}"
|
|
|
|
// Adding native SSL library to allow using native SSL with Artemis and AMQP
|
|
implementation "io.netty:netty-tcnative-boringssl-static:$tcnative_version"
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.8.0'
|
|
|
|
// Byteman for runtime (termination) rules injection on the running node
|
|
// Submission tool allowing to install rules on running nodes
|
|
slowIntegrationTestCompile "org.jboss.byteman:byteman-submit:4.0.22"
|
|
// The actual Byteman agent which should only be in the classpath of the out of process nodes
|
|
slowIntegrationTestCompile "org.jboss.byteman:byteman:4.0.22"
|
|
|
|
testImplementation(project(':test-cli'))
|
|
testImplementation(project(':test-utils'))
|
|
|
|
slowIntegrationTestCompile sourceSets.main.output
|
|
slowIntegrationTestCompile sourceSets.test.output
|
|
slowIntegrationTestCompile configurations.implementation
|
|
slowIntegrationTestCompile configurations.testImplementation
|
|
slowIntegrationTestRuntimeOnly configurations.runtimeOnly
|
|
slowIntegrationTestRuntimeOnly configurations.testRuntimeOnly
|
|
|
|
integrationTestImplementation project(":testing:cordapps:missingmigration")
|
|
|
|
testImplementation project(':testing:cordapps:dbfailure:dbfworkflows')
|
|
|
|
// used by FinalityFlowErrorHandlingTest
|
|
slowIntegrationTestImplementation project(':testing:cordapps:cashobservers')
|
|
}
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
// Resolves a Gradle warning about not scanning for pre-processors.
|
|
options.compilerArgs << '-proc:none'
|
|
}
|
|
|
|
tasks.withType(Test).configureEach {
|
|
jvmArgs '-Djdk.attach.allowAttachSelf=true'
|
|
}
|
|
|
|
tasks.register('integrationTest', Test) {
|
|
testClassesDirs = sourceSets.integrationTest.output.classesDirs
|
|
classpath = sourceSets.integrationTest.runtimeClasspath
|
|
maxParallelForks = (System.env.CORDA_NODE_INT_TESTING_FORKS == null) ? 1 : "$System.env.CORDA_NODE_INT_TESTING_FORKS".toInteger()
|
|
// CertificateRevocationListNodeTests
|
|
systemProperty 'net.corda.dpcrl.connect.timeout', '4000'
|
|
}
|
|
|
|
tasks.register('slowIntegrationTest', Test) {
|
|
testClassesDirs = sourceSets.slowIntegrationTest.output.classesDirs
|
|
classpath = sourceSets.slowIntegrationTest.runtimeClasspath
|
|
maxParallelForks = 1
|
|
}
|
|
|
|
// quasar exclusions upon agent code instrumentation at run-time
|
|
quasar {
|
|
excludeClassLoaders.addAll(
|
|
'net.corda.core.serialization.internal.**'
|
|
)
|
|
excludePackages.addAll(
|
|
"antlr**",
|
|
"com.codahale**",
|
|
"com.fasterxml.**",
|
|
"com.github.benmanes.caffeine.**",
|
|
"com.google.**",
|
|
"com.lmax.**",
|
|
"com.zaxxer.**",
|
|
"net.bytebuddy**",
|
|
"io.github.classgraph**",
|
|
"io.netty*",
|
|
"liquibase**",
|
|
"net.i2p.crypto.**",
|
|
"nonapi.io.github.classgraph.**",
|
|
"org.apiguardian.**",
|
|
"org.bouncycastle**",
|
|
"org.codehaus.**",
|
|
"org.h2**",
|
|
"org.hibernate**",
|
|
"org.jboss.**",
|
|
"org.objenesis**",
|
|
"org.w3c.**",
|
|
"org.xml**",
|
|
"org.yaml**",
|
|
"rx**",
|
|
"io.opentelemetry.**")
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-node'
|
|
}
|
|
|
|
tasks.named('test', Test) {
|
|
maxHeapSize = "3g"
|
|
maxParallelForks = (System.env.CORDA_NODE_TESTING_FORKS == null) ? 1 : "$System.env.CORDA_NODE_TESTING_FORKS".toInteger()
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
artifactId jar.baseName
|
|
from components.java
|
|
}
|
|
}
|
|
}
|