2018-07-12 13:39:17 +00:00
// Import private compile time constants
buildscript {
def properties = new Properties ( )
file ( "$projectDir/src/main/resources/build.properties" ) . withInputStream { properties . load ( it ) }
ext . jolokia_version = properties . getProperty ( 'jolokiaAgentVersion' )
2019-09-03 15:40:08 +00:00
dependencies {
classpath group: 'com.github.docker-java' , name: 'docker-java' , version: '3.1.5'
}
2018-07-12 13:39:17 +00:00
}
2019-09-03 15:40:08 +00:00
2018-07-12 13:39:17 +00:00
plugins {
id 'com.google.cloud.tools.jib' version '0.9.4'
}
2016-05-14 16:57:41 +00:00
apply plugin: 'kotlin'
2017-06-22 09:35:49 +00:00
// Java Persistence API support: create no-arg constructor
// see: http://stackoverflow.com/questions/32038177/kotlin-with-jpa-default-constructor-hell
apply plugin: 'kotlin-jpa'
2016-11-15 12:42:35 +00:00
apply plugin: 'java'
2016-11-18 14:41:06 +00:00
apply plugin: 'net.corda.plugins.quasar-utils'
apply plugin: 'net.corda.plugins.publish-utils'
2017-06-26 17:07:56 +00:00
apply plugin: 'com.jfrog.artifactory'
2016-05-14 16:57:41 +00:00
2016-12-06 10:49:46 +00:00
description 'Corda node modules'
2016-05-14 16:57:41 +00:00
//noinspection GroovyAssignabilityCheck
configurations {
2016-09-08 14:28:04 +00:00
integrationTestCompile . extendsFrom testCompile
2019-05-20 10:57:56 +00:00
integrationTestRuntimeOnly . extendsFrom testRuntimeOnly
2019-09-03 15:40:08 +00:00
slowIntegrationTestCompile . extendsFrom testCompile
slowIntegrationTestRuntimeOnly . extendsFrom testRuntimeOnly
2016-05-14 16:57:41 +00:00
}
2016-07-21 12:55:40 +00:00
sourceSets {
2016-09-08 14:28:04 +00:00
integrationTest {
kotlin {
compileClasspath + = main . output + test . output
runtimeClasspath + = main . output + test . output
srcDir file ( 'src/integration-test/kotlin' )
}
2017-07-17 17:20:02 +00:00
java {
compileClasspath + = main . output + test . output
runtimeClasspath + = main . output + test . output
srcDir file ( 'src/integration-test/java' )
}
2017-04-21 15:26:35 +00:00
resources {
srcDir file ( 'src/integration-test/resources' )
}
2016-09-08 14:28:04 +00:00
}
2019-09-03 15:40:08 +00:00
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' )
}
}
2016-07-21 12:55:40 +00:00
}
2018-07-12 13:39:17 +00:00
jib . container {
2019-09-03 15:40:08 +00:00
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}-jdk8.jar" . toString ( ) ]
2018-07-12 13:39:17 +00:00
}
2017-05-05 12:12:36 +00:00
// 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" )
2017-12-08 16:27:12 +00:00
from file ( "$rootDir/config/dev/jolokia-access.xml" )
}
processTestResources {
from file ( "$rootDir/config/test/jolokia-access.xml" )
2017-05-05 12:12:36 +00:00
}
2016-05-14 16:57:41 +00:00
// 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 {
2017-03-17 10:33:01 +00:00
compile project ( ':node-api' )
2017-03-22 15:52:54 +00:00
compile project ( ':client:rpc' )
2018-03-07 09:57:32 +00:00
compile project ( ':tools:shell' )
2018-09-06 08:37:04 +00:00
compile project ( ':tools:cliutils' )
2018-10-29 13:33:43 +00:00
compile project ( ':common-validation' )
2018-11-08 15:56:00 +00:00
compile project ( ':common-configuration-parsing' )
2019-04-09 19:14:37 +00:00
compile project ( ':common-logging' )
2019-09-03 15:40:08 +00:00
2019-02-17 11:47:38 +00:00
// Backwards compatibility goo: Apps expect confidential-identities to be loaded by default.
// We could eventually gate this on a target-version check.
compile project ( ':confidential-identities' )
2017-02-16 11:02:36 +00:00
2016-07-22 16:31:03 +00:00
// Log4J: logging framework (with SLF4J bindings)
2016-07-21 12:55:40 +00:00
compile "org.apache.logging.log4j:log4j-slf4j-impl:${log4j_version}"
2016-09-01 10:12:59 +00:00
compile "org.apache.logging.log4j:log4j-web:${log4j_version}"
2017-04-21 15:26:35 +00:00
compile "org.slf4j:jul-to-slf4j:$slf4j_version"
2016-05-14 16:57:41 +00:00
2018-04-24 13:03:41 +00:00
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
2018-10-15 12:44:02 +00:00
runtimeOnly "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
2016-05-14 16:57:41 +00:00
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
2017-03-22 15:52:54 +00:00
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
2016-05-14 16:57:41 +00:00
2018-05-24 11:18:07 +00:00
// Kryo: object graph serialization.
2019-06-20 15:19:16 +00:00
compile "com.esotericsoftware:kryo:4.0.2"
compile "de.javakaffee:kryo-serializers:0.43"
2018-05-24 11:18:07 +00:00
2017-01-03 14:15:23 +00:00
compile "com.google.guava:guava:$guava_version"
2016-05-14 16:57:41 +00:00
2018-03-14 16:07:31 +00:00
// For caches rather than guava
compile "com.github.ben-manes.caffeine:caffeine:$caffeine_version"
2018-10-02 09:33:17 +00:00
// For async logging
compile "com.lmax:disruptor:$disruptor_version"
2016-05-14 16:57:41 +00:00
// Artemis: for reliable p2p message queues.
2017-10-26 11:16:57 +00:00
// TODO: remove the forced update of commons-collections and beanutils when artemis updates them
compile "org.apache.commons:commons-collections4:${commons_collections_version}"
compile "commons-beanutils:commons-beanutils:${beanutils_version}"
2016-05-14 16:57:41 +00:00
compile "org.apache.activemq:artemis-server:${artemis_version}"
compile "org.apache.activemq:artemis-core-client:${artemis_version}"
2019-09-03 15:40:08 +00:00
runtime ( "org.apache.activemq:artemis-amqp-protocol:${artemis_version}" ) {
2017-05-31 17:33:57 +00:00
// Gains our proton-j version from core module.
exclude group: 'org.apache.qpid' , module: 'proton-j'
}
2016-05-14 16:57:41 +00:00
2017-03-06 14:19:04 +00:00
// Manifests: for reading stuff from the manifest file
2018-05-24 17:26:55 +00:00
compile "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
2017-03-06 14:19:04 +00:00
2016-05-14 16:57:41 +00:00
compile ( "com.intellij:forms_rt:7.0.3" ) {
exclude group: "asm"
}
// Coda Hale's Metrics: for monitoring of key statistics
2019-06-20 15:19:16 +00:00
compile "io.dropwizard.metrics:metrics-jmx:$metrics_version"
2016-05-14 16:57:41 +00:00
// JimFS: in memory java.nio filesystem. Used for test and simulation utilities.
compile "com.google.jimfs:jimfs:1.1"
// TypeSafe Config: for simple and human friendly config files.
2017-01-03 14:15:23 +00:00
compile "com.typesafe:config:$typesafe_config_version"
2016-05-14 16:57:41 +00:00
2019-05-15 15:40:12 +00:00
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
2019-05-20 10:57:56 +00:00
testImplementation "junit:junit:$junit_version"
2019-05-15 15:40:12 +00:00
2019-05-20 10:57:56 +00:00
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
2019-05-15 15:40:12 +00:00
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
2019-05-20 10:57:56 +00:00
2016-05-14 16:57:41 +00:00
// Unit testing helpers.
2016-07-04 14:34:45 +00:00
testCompile "org.assertj:assertj-core:${assertj_version}"
2019-07-09 09:09:21 +00:00
testCompile project ( ':node-driver' )
2017-01-06 09:42:04 +00:00
testCompile project ( ':test-utils' )
2017-03-21 19:45:12 +00:00
testCompile project ( ':client:jfx' )
2018-12-19 18:02:51 +00:00
testCompile project ( ':finance:contracts' )
testCompile project ( ':finance:workflows' )
2016-08-24 13:57:52 +00:00
2017-06-22 09:35:49 +00:00
// sample test schemas
2018-12-19 18:02:51 +00:00
testCompile project ( path: ':finance:contracts' , configuration: 'testArtifacts' )
2017-06-22 09:35:49 +00:00
2016-08-02 16:06:36 +00:00
// For H2 database support in persistence
2017-03-20 10:27:45 +00:00
compile "com.h2database:h2:$h2_version"
2016-08-02 16:06:36 +00:00
2017-10-19 21:17:54 +00:00
// For Postgres database support in persistence
compile "org.postgresql:postgresql:$postgresql_version"
2016-08-02 16:06:36 +00:00
// SQL connection pooling library
2019-02-20 11:28:32 +00:00
compile "com.zaxxer:HikariCP:${hikari_version}"
2016-09-08 14:28:04 +00:00
2016-09-27 14:17:27 +00:00
// Hibernate: an object relational mapper for writing state objects to the database automatically.
2017-01-03 14:15:23 +00:00
compile "org.hibernate:hibernate-core:$hibernate_version"
compile "org.hibernate:hibernate-java8:$hibernate_version"
2016-09-27 14:17:27 +00:00
2017-01-12 14:35:40 +00:00
// OkHTTP: Simple HTTP library.
compile "com.squareup.okhttp3:okhttp:$okhttp_version"
2017-12-11 08:39:09 +00:00
// Apache Shiro: authentication, authorization and session management.
compile "org.apache.shiro:shiro-core:${shiro_version}"
2018-07-27 17:25:22 +00:00
//Picocli for command line interface
compile "info.picocli:picocli:$picocli_version"
2016-09-08 14:28:04 +00:00
// Integration test helpers
2017-01-03 14:15:23 +00:00
integrationTestCompile "junit:junit:$junit_version"
2017-06-14 13:26:06 +00:00
integrationTestCompile "org.assertj:assertj-core:${assertj_version}"
2017-06-02 14:47:20 +00:00
2018-02-15 17:10:07 +00:00
// AgentLoader: dynamic loading of JVM agents
compile group: 'com.ea.agentloader' , name: 'ea-agent-loader' , version: "${eaagentloader_version}"
2019-01-09 15:52:42 +00:00
// BFT-Smart dependencies
compile 'com.github.bft-smart:library:master-v1.1-beta-g6215ec8-87'
// Java Atomix: RAFT library
compile 'io.atomix.copycat:copycat-client:1.2.3'
compile 'io.atomix.copycat:copycat-server:1.2.3'
compile 'io.atomix.catalyst:catalyst-netty:1.1.2'
2017-10-23 10:46:24 +00:00
// Jetty dependencies for NetworkMapClient test.
// Web stuff: for HTTP[S] servlets
testCompile "org.eclipse.jetty:jetty-servlet:${jetty_version}"
testCompile "org.eclipse.jetty:jetty-webapp:${jetty_version}"
2019-06-13 09:15:13 +00:00
testCompile "javax.servlet:javax.servlet-api:${servlet_version}"
2017-10-23 10:46:24 +00:00
// Jersey for JAX-RS implementation for use in Jetty
testCompile "org.glassfish.jersey.core:jersey-server:${jersey_version}"
testCompile "org.glassfish.jersey.containers:jersey-container-servlet-core:${jersey_version}"
testCompile "org.glassfish.jersey.containers:jersey-container-jetty-http:${jersey_version}"
2017-12-08 16:27:12 +00:00
2018-03-08 09:06:12 +00:00
// Jolokia JVM monitoring agent, required to push logs through slf4j
2018-03-07 13:12:15 +00:00
compile "org.jolokia:jolokia-jvm:${jolokia_version}:agent"
2018-08-09 07:11:17 +00:00
// 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
2018-08-09 17:17:20 +00:00
compile "com.palominolabs.metrics:metrics-new-relic:${metrics_new_relic_version}"
2018-09-14 13:37:52 +00:00
testCompile ( project ( ':test-cli' ) )
2019-01-04 15:42:11 +00:00
testCompile ( project ( ':test-utils' ) )
2019-09-03 15:40:08 +00:00
slowIntegrationTestCompile sourceSets . main . output
slowIntegrationTestCompile sourceSets . test . output
slowIntegrationTestCompile configurations . compile
slowIntegrationTestCompile configurations . testCompile
slowIntegrationTestRuntime configurations . runtime
slowIntegrationTestRuntime configurations . testRuntime
2016-05-14 16:57:41 +00:00
}
2018-09-13 09:55:52 +00:00
tasks . withType ( JavaCompile ) {
// Resolves a Gradle warning about not scanning for pre-processors.
2019-05-20 15:16:49 +00:00
options . compilerArgs < < '-proc:none'
2018-09-13 09:55:52 +00:00
}
2016-09-08 14:28:04 +00:00
task integrationTest ( type: Test ) {
2017-08-24 15:46:54 +00:00
testClassesDirs = sourceSets . integrationTest . output . classesDirs
2016-09-08 14:28:04 +00:00
classpath = sourceSets . integrationTest . runtimeClasspath
2019-09-03 15:40:08 +00:00
maxParallelForks = ( System . env . CORDA_NODE_INT_TESTING_FORKS = = null ) ? 1 : "$System.env.CORDA_NODE_INT_TESTING_FORKS" . toInteger ( )
}
task slowIntegrationTest ( type: Test ) {
testClassesDirs = sourceSets . slowIntegrationTest . output . classesDirs
classpath = sourceSets . slowIntegrationTest . runtimeClasspath
maxParallelForks = 1
2017-01-03 14:15:23 +00:00
}
2017-06-06 14:05:47 +00:00
2019-05-30 09:09:11 +00:00
// quasar exclusions upon agent code instrumentation at run-time
quasar {
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**" )
}
2017-06-06 14:05:47 +00:00
jar {
baseName 'corda-node'
}
publish {
2017-07-18 11:34:56 +00:00
name jar . baseName
2019-05-16 14:15:38 +00:00
}
2019-09-03 15:40:08 +00:00
test {
maxHeapSize = "3g"
maxParallelForks = ( System . env . CORDA_NODE_TESTING_FORKS = = null ) ? 1 : "$System.env.CORDA_NODE_TESTING_FORKS" . toInteger ( )
}