2018-03-06 17:29:21 +00:00
|
|
|
/*
|
|
|
|
* R3 Proprietary and Confidential
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 R3 Limited. All rights reserved.
|
|
|
|
*
|
|
|
|
* The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law.
|
|
|
|
*
|
|
|
|
* Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited.
|
|
|
|
*/
|
|
|
|
|
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'
|
|
|
|
|
2018-02-16 12:17:46 +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')
|
|
|
|
}
|
|
|
|
|
2016-05-14 16:57:41 +00:00
|
|
|
//noinspection GroovyAssignabilityCheck
|
|
|
|
configurations {
|
2017-03-10 15:57:31 +00:00
|
|
|
compile {
|
|
|
|
// We don't need these because we already include netty-all.
|
|
|
|
exclude group: 'io.netty', module: 'netty-transport'
|
|
|
|
exclude group: 'io.netty', module: 'netty-handler'
|
2018-03-13 10:20:22 +00:00
|
|
|
exclude group: 'io.netty', module: 'netty-common'
|
2017-03-23 17:32:14 +00:00
|
|
|
}
|
|
|
|
|
2016-09-08 14:28:04 +00:00
|
|
|
integrationTestCompile.extendsFrom testCompile
|
|
|
|
integrationTestRuntime.extendsFrom testRuntime
|
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')
|
2017-12-01 17:17:51 +00:00
|
|
|
srcDir file('../../testing/test-utils/src/main/resources')
|
2017-04-21 15:26:35 +00:00
|
|
|
}
|
2016-09-08 14:28:04 +00:00
|
|
|
}
|
2016-07-21 12:55:40 +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-09-18 13:19:20 +00:00
|
|
|
compile project(":confidential-identities")
|
2017-03-22 15:52:54 +00:00
|
|
|
compile project(':client:rpc')
|
2018-03-07 09:57:32 +00:00
|
|
|
compile project(':tools:shell')
|
2017-09-12 18:18:09 +00:00
|
|
|
compile "net.corda.plugins:cordform-common:$gradle_plugins_version"
|
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
|
|
|
|
2017-03-30 15:27:01 +00:00
|
|
|
compile "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
|
|
|
|
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"
|
|
|
|
|
2016-05-14 16:57:41 +00:00
|
|
|
// JOpt: for command line flags.
|
2017-01-03 14:15:23 +00:00
|
|
|
compile "net.sf.jopt-simple:jopt-simple:$jopt_simple_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}"
|
2017-05-31 17:33:57 +00:00
|
|
|
runtime ("org.apache.activemq:artemis-amqp-protocol:${artemis_version}") {
|
|
|
|
// Gains our proton-j version from core module.
|
|
|
|
exclude group: 'org.apache.qpid', module: 'proton-j'
|
|
|
|
}
|
2016-05-14 16:57:41 +00:00
|
|
|
|
|
|
|
// JAnsi: for drawing things to the terminal in nicely coloured ways.
|
2017-01-03 14:15:23 +00:00
|
|
|
compile "org.fusesource.jansi:jansi:$jansi_version"
|
2016-05-14 16:57:41 +00:00
|
|
|
|
2017-03-06 14:19:04 +00:00
|
|
|
// Manifests: for reading stuff from the manifest file
|
|
|
|
compile "com.jcabi:jcabi-manifests:1.1"
|
|
|
|
|
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
|
2018-03-21 09:52:29 +00:00
|
|
|
compile "io.dropwizard.metrics:metrics-core:$metrics_version"
|
|
|
|
compile "io.dropwizard.metrics:metrics-graphite:$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
|
|
|
|
|
|
|
// Unit testing helpers.
|
2017-01-03 14:15:23 +00:00
|
|
|
testCompile "junit:junit:$junit_version"
|
2016-07-04 14:34:45 +00:00
|
|
|
testCompile "org.assertj:assertj-core:${assertj_version}"
|
2017-12-05 14:46:35 +00:00
|
|
|
testCompile 'com.github.stefanbirkner:system-rules:1.16.0'
|
2017-01-06 09:42:04 +00:00
|
|
|
testCompile project(':test-utils')
|
2017-03-21 19:45:12 +00:00
|
|
|
testCompile project(':client:jfx')
|
2017-08-03 16:17:17 +00:00
|
|
|
testCompile project(':finance')
|
2016-08-24 13:57:52 +00:00
|
|
|
|
2017-06-22 09:35:49 +00:00
|
|
|
// sample test schemas
|
|
|
|
testCompile project(path: ':finance', configuration: 'testArtifacts')
|
|
|
|
|
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-12-18 09:47:07 +00:00
|
|
|
// For the MySQLUniquenessProvider
|
|
|
|
compile group: 'mysql', name: 'mysql-connector-java', version: '6.0.6'
|
2017-10-25 12:54:34 +00:00
|
|
|
|
2016-08-02 16:06:36 +00:00
|
|
|
// SQL connection pooling library
|
2018-01-24 11:55:43 +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
|
|
|
|
2016-10-25 09:01:52 +00:00
|
|
|
// Capsule is a library for building independently executable fat JARs.
|
2017-05-24 08:58:33 +00:00
|
|
|
// We only need this dependency to compile our Caplet against.
|
|
|
|
compileOnly "co.paralleluniverse:capsule:$capsule_version"
|
2016-10-21 13:17:05 +00:00
|
|
|
|
2016-10-25 15:45:08 +00:00
|
|
|
// Java Atomix: RAFT library
|
2017-03-30 10:40:56 +00:00
|
|
|
compile 'io.atomix.copycat:copycat-client:1.2.3'
|
|
|
|
compile 'io.atomix.copycat:copycat-server:1.2.3'
|
2017-03-10 15:57:31 +00:00
|
|
|
compile 'io.atomix.catalyst:catalyst-netty:1.1.2'
|
|
|
|
|
|
|
|
// Netty: All of it.
|
|
|
|
compile "io.netty:netty-all:$netty_version"
|
2016-10-25 15:45:08 +00:00
|
|
|
|
2017-01-12 14:35:40 +00:00
|
|
|
// OkHTTP: Simple HTTP library.
|
|
|
|
compile "com.squareup.okhttp3:okhttp:$okhttp_version"
|
|
|
|
|
2017-01-28 17:38:54 +00:00
|
|
|
// BFT-SMaRt
|
|
|
|
compile 'commons-codec:commons-codec:1.10'
|
|
|
|
compile 'com.github.bft-smart:library:master-v1.1-beta-g6215ec8-87'
|
|
|
|
|
2017-12-11 08:39:09 +00:00
|
|
|
// Apache Shiro: authentication, authorization and session management.
|
|
|
|
compile "org.apache.shiro:shiro-core:${shiro_version}"
|
|
|
|
|
2017-05-16 15:37:40 +00:00
|
|
|
// Jsh: A SSH implementation for tunneling inbound traffic via a relay
|
|
|
|
compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
|
|
|
|
|
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}"
|
|
|
|
|
2017-10-25 12:54:34 +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}"
|
|
|
|
testCompile "javax.servlet:javax.servlet-api:3.1.0"
|
|
|
|
|
|
|
|
// 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-01-29 18:35:58 +00:00
|
|
|
// Add runtime-only dependency on the JDBC driver for the specified DB provider (used in database integration tests)
|
2018-03-09 09:52:44 +00:00
|
|
|
def DB_PROVIDER = System.getProperty("custom.databaseProvider")
|
2018-01-29 18:35:58 +00:00
|
|
|
switch (DB_PROVIDER) {
|
|
|
|
case null: //DB provider not provided, use default H2 driver (already in the classpath)
|
|
|
|
break
|
|
|
|
case "integration-sql-server" :
|
|
|
|
runtime "com.microsoft.sqlserver:mssql-jdbc:6.2.1.jre8"
|
|
|
|
break
|
|
|
|
case "integration-azure-sql" :
|
|
|
|
runtime "com.microsoft.sqlserver:mssql-jdbc:6.2.1.jre8"
|
|
|
|
break
|
|
|
|
case "integration-oracle" :
|
|
|
|
runtime ("com.oracle.jdbc:ojdbc8:12.2.0.1") { //exclude unnecessary or conflicting libraries
|
|
|
|
exclude group: "com.oracle.jdbc", module: "ucp"
|
|
|
|
exclude group: "com.oracle.jdbc", module: "ons"
|
|
|
|
exclude group: "com.oracle.jdbc", module: "xmlparserv2"
|
|
|
|
exclude group: "com.oracle.jdbc", module: "xdb6"
|
|
|
|
exclude group: "com.oracle.jdbc", module: "oraclepki"
|
|
|
|
exclude group: "com.oracle.jdbc", module: "osdt_cert"
|
|
|
|
exclude group: "com.oracle.jdbc", module: "osdt_core"
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case "integration-oracle-11" :
|
|
|
|
runtime files("lib/ojdbc6.jar")
|
|
|
|
break
|
|
|
|
case "integration-postgres" :
|
|
|
|
runtime "org.postgresql:postgresql:${postgresql_version}"
|
|
|
|
break
|
|
|
|
default:
|
2018-01-25 13:38:51 +00:00
|
|
|
throw new GradleException('Unsupported DB provider: ' + DB_PROVIDER)
|
|
|
|
}
|
|
|
|
|
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-03-12 17:39:44 +00:00
|
|
|
|
|
|
|
// Allow access to simple SOCKS Server for integration testing
|
2018-03-30 22:52:53 +00:00
|
|
|
testCompile("io.netty:netty-example:$netty_version") {
|
2018-03-12 17:39:44 +00:00
|
|
|
exclude group: "io.netty", module: "netty-tcnative"
|
2018-03-30 22:52:53 +00:00
|
|
|
exclude group: "ch.qos.logback", module: "logback-classic"
|
2018-03-12 17:39:44 +00:00
|
|
|
}
|
2016-05-14 16:57:41 +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
|
2017-01-03 14:15:23 +00:00
|
|
|
}
|
2017-06-06 14:05:47 +00:00
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName 'corda-node'
|
|
|
|
}
|
|
|
|
|
|
|
|
publish {
|
2017-07-18 11:34:56 +00:00
|
|
|
name jar.baseName
|
2017-08-09 11:12:47 +00:00
|
|
|
}
|