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 {
|
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'
|
2017-03-23 17:32:14 +00:00
|
|
|
}
|
|
|
|
|
2016-09-08 14:28:04 +00:00
|
|
|
integrationTestCompile.extendsFrom testCompile
|
|
|
|
integrationTestRuntime.extendsFrom testRuntime
|
2017-06-02 14:47:20 +00:00
|
|
|
|
|
|
|
smokeTestCompile.extendsFrom compile
|
|
|
|
smokeTestRuntime.extendsFrom runtime
|
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
|
|
|
}
|
2017-06-02 14:47:20 +00:00
|
|
|
smokeTest {
|
|
|
|
kotlin {
|
|
|
|
// We must NOT have any Node code on the classpath, so do NOT
|
|
|
|
// include the test or integrationTest dependencies here.
|
|
|
|
compileClasspath += main.output
|
|
|
|
runtimeClasspath += main.output
|
|
|
|
srcDir file('src/smoke-test/kotlin')
|
|
|
|
}
|
2017-07-17 17:20:02 +00:00
|
|
|
java {
|
|
|
|
compileClasspath += main.output
|
|
|
|
runtimeClasspath += main.output
|
|
|
|
srcDir file('src/smoke-test/java')
|
|
|
|
}
|
2017-06-02 14:47:20 +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-06-02 14:47:20 +00:00
|
|
|
processSmokeTestResources {
|
2017-08-09 11:12:47 +00:00
|
|
|
// Bring in the fully built corda.jar for use by NodeFactory in the smoke tests
|
2017-06-02 14:47:20 +00:00
|
|
|
from(project(':node:capsule').tasks.buildCordaJAR) {
|
|
|
|
rename 'corda-(.*)', 'corda.jar'
|
|
|
|
}
|
2017-05-19 15:14:48 +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')
|
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-05-14 16:57:41 +00:00
|
|
|
compile "com.google.code.findbugs:jsr305:3.0.1"
|
2016-07-21 12:55:40 +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
|
|
|
|
|
|
|
// 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.
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2017-02-23 11:44:09 +00:00
|
|
|
// Jackson support: serialisation to/from JSON, YAML, etc
|
|
|
|
compile project(':client:jackson')
|
2016-05-14 16:57:41 +00:00
|
|
|
|
|
|
|
// Coda Hale's Metrics: for monitoring of key statistics
|
|
|
|
compile "io.dropwizard.metrics:metrics-core:3.1.2"
|
|
|
|
|
|
|
|
// 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-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
|
|
|
|
|
|
|
// SQL connection pooling library
|
2017-01-03 14:15:23 +00:00
|
|
|
compile "com.zaxxer:HikariCP:2.5.1"
|
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-02-23 11:44:09 +00:00
|
|
|
// CRaSH: An embeddable monitoring and admin shell with support for adding new commands written in Groovy.
|
2017-10-03 09:00:56 +00:00
|
|
|
compile("com.github.corda.crash:crash.shell:d5da86ba1b38e9c33af2a621dd15ba286307bec4") {
|
2017-03-29 16:10:34 +00:00
|
|
|
exclude group: "org.slf4j", module: "slf4j-jdk14"
|
|
|
|
}
|
2017-02-23 11:44:09 +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-05-10 10:28:25 +00:00
|
|
|
// FastClasspathScanner: classpath scanning
|
2017-05-19 15:14:48 +00:00
|
|
|
compile 'io.github.lukehutch:fast-classpath-scanner:2.0.21'
|
2017-05-10 10:28:25 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
// Smoke tests do NOT have any Node code on the classpath!
|
|
|
|
smokeTestCompile project(':smoke-test-utils')
|
|
|
|
smokeTestCompile "org.assertj:assertj-core:${assertj_version}"
|
|
|
|
smokeTestCompile "junit:junit:$junit_version"
|
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
|
|
|
|
2017-08-09 11:12:47 +00:00
|
|
|
task smokeTestJar(type: Jar) {
|
2017-09-29 15:55:26 +00:00
|
|
|
classifier 'smokeTests'
|
2017-08-09 11:12:47 +00:00
|
|
|
from sourceSets.smokeTest.output
|
|
|
|
}
|
|
|
|
|
2017-06-02 14:47:20 +00:00
|
|
|
task smokeTest(type: Test) {
|
2017-08-09 11:12:47 +00:00
|
|
|
dependsOn smokeTestJar
|
2017-08-24 15:46:54 +00:00
|
|
|
testClassesDirs = sourceSets.smokeTest.output.classesDirs
|
2017-06-02 14:47:20 +00:00
|
|
|
classpath = sourceSets.smokeTest.runtimeClasspath
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|