2016-05-14 16:57:41 +00:00
|
|
|
apply plugin: 'kotlin'
|
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'
|
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
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
|
|
|
}
|
|
|
|
jcenter()
|
2016-08-02 16:06:36 +00:00
|
|
|
maven {
|
|
|
|
url 'https://dl.bintray.com/kotlin/exposed'
|
|
|
|
}
|
2016-05-14 16:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//noinspection GroovyAssignabilityCheck
|
|
|
|
configurations {
|
|
|
|
// we don't want isolated.jar in classPath, since we want to test jar being dynamically loaded as an attachment
|
|
|
|
runtime.exclude module: 'isolated'
|
2016-09-08 14:28:04 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
// We want to use SLF4J's version of these bindings: jcl-over-slf4j
|
|
|
|
// Remove any transitive dependency on Apache's version.
|
|
|
|
exclude group: 'commons-logging', module: 'commons-logging'
|
|
|
|
}
|
|
|
|
|
|
|
|
testCompile {
|
|
|
|
// Excluding javassist:javassist because it clashes with Hibernate's
|
|
|
|
// transitive org.javassist:javassist dependency.
|
|
|
|
// TODO: Remove this exclusion once junit-quickcheck 0.8 is released.
|
|
|
|
exclude group: 'javassist', module: 'javassist'
|
2017-03-10 15:57:31 +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')
|
|
|
|
}
|
|
|
|
}
|
2016-07-21 12:55:40 +00:00
|
|
|
test {
|
|
|
|
resources {
|
|
|
|
srcDir "../config/test"
|
|
|
|
}
|
|
|
|
}
|
2016-11-18 17:30:51 +00:00
|
|
|
main {
|
|
|
|
resources {
|
|
|
|
srcDir "../config/dev"
|
|
|
|
}
|
|
|
|
}
|
2016-07-21 12:55:40 +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-02-16 11:02:36 +00:00
|
|
|
|
2017-03-23 17:32:14 +00:00
|
|
|
compile project(':finance')
|
|
|
|
compile project(':node-schemas')
|
2017-03-17 10:33:01 +00:00
|
|
|
compile project(':node-api')
|
2017-03-22 15:52:54 +00:00
|
|
|
compile project(':client:rpc')
|
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}"
|
2016-05-14 16:57:41 +00:00
|
|
|
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
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}"
|
2016-07-21 12:56:23 +00:00
|
|
|
runtime "org.apache.activemq:artemis-amqp-protocol:${artemis_version}"
|
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
|
|
|
// GraphStream: For visualisation
|
2016-09-01 09:46:57 +00:00
|
|
|
testCompile "org.graphstream:gs-core:1.3"
|
|
|
|
testCompile("org.graphstream:gs-ui:1.3") {
|
|
|
|
exclude group: "bouncycastle"
|
|
|
|
}
|
2016-05-14 16:57:41 +00:00
|
|
|
compile("com.intellij:forms_rt:7.0.3") {
|
|
|
|
exclude group: "asm"
|
|
|
|
}
|
|
|
|
|
2016-07-04 14:34:45 +00:00
|
|
|
compile "com.fasterxml.jackson.core:jackson-annotations:${jackson_version}"
|
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-03 14:15:23 +00:00
|
|
|
testCompile "com.pholser:junit-quickcheck-core:$quickcheck_version"
|
2017-01-06 09:42:04 +00:00
|
|
|
testCompile "com.nhaarman:mockito-kotlin:1.1.0"
|
|
|
|
testCompile project(':test-utils')
|
2017-03-21 19:45:12 +00:00
|
|
|
testCompile project(':client:jfx')
|
2017-01-06 09:42:04 +00:00
|
|
|
testCompile project(':core')
|
2016-08-24 13:57:52 +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
|
|
|
|
|
|
|
// Exposed: Kotlin SQL library - under evaluation
|
2017-01-03 14:15:23 +00:00
|
|
|
// TODO: Upgrade to Exposed 0.7 (has API changes)
|
2016-08-02 16:06:36 +00:00
|
|
|
compile "org.jetbrains.exposed:exposed:0.5.0"
|
|
|
|
|
|
|
|
// 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.
|
2016-10-21 13:17:05 +00:00
|
|
|
compile 'co.paralleluniverse:capsule:1.0.3'
|
|
|
|
|
2016-10-25 15:45:08 +00:00
|
|
|
// Java Atomix: RAFT library
|
2016-11-28 15:51:31 +00:00
|
|
|
compile 'io.atomix.copycat:copycat-client:1.1.4'
|
|
|
|
compile 'io.atomix.copycat:copycat-server:1.1.4'
|
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-02-15 18:32:23 +00:00
|
|
|
// Requery: object mapper for Kotlin
|
|
|
|
compile "io.requery:requery-kotlin:$requery_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"
|
2016-05-14 16:57:41 +00:00
|
|
|
}
|
|
|
|
|
2016-09-08 14:28:04 +00:00
|
|
|
task integrationTest(type: Test) {
|
|
|
|
testClassesDir = sourceSets.integrationTest.output.classesDir
|
|
|
|
classpath = sourceSets.integrationTest.runtimeClasspath
|
2017-01-03 14:15:23 +00:00
|
|
|
}
|