2015-11-30 17:00:25 +00:00
|
|
|
group 'com.r3cev.prototyping'
|
2015-11-03 12:37:19 +00:00
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'kotlin'
|
2016-01-27 13:56:01 +00:00
|
|
|
apply plugin: 'application'
|
2016-03-10 16:37:10 +00:00
|
|
|
apply plugin: 'project-report'
|
2016-01-27 13:56:01 +00:00
|
|
|
|
2015-11-23 12:13:46 +00:00
|
|
|
allprojects {
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
}
|
|
|
|
|
2015-11-03 12:37:19 +00:00
|
|
|
buildscript {
|
2016-03-17 12:04:54 +00:00
|
|
|
ext.kotlin_version = '1.0.1'
|
2016-03-02 13:45:53 +00:00
|
|
|
// TODO: Reset to 0.7.5 when released. We need the snapshot for a TLS serialization related fix.
|
|
|
|
ext.quasar_version = '0.7.5-SNAPSHOT'
|
2016-01-05 10:44:38 +00:00
|
|
|
ext.asm_version = '0.5.3'
|
2016-01-22 13:19:32 +00:00
|
|
|
ext.artemis_version = '1.2.0'
|
2016-03-10 15:06:17 +00:00
|
|
|
ext.jetty_version = '9.1.1.v20140108'
|
|
|
|
ext.jersey_version = '2.22.2'
|
2016-01-05 10:44:38 +00:00
|
|
|
|
2015-11-03 12:37:19 +00:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2015-11-16 11:16:37 +00:00
|
|
|
jcenter()
|
2015-11-03 12:37:19 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-05 10:44:38 +00:00
|
|
|
|
2015-11-16 11:16:37 +00:00
|
|
|
repositories {
|
2016-03-02 13:45:53 +00:00
|
|
|
mavenLocal()
|
2015-11-16 11:16:37 +00:00
|
|
|
mavenCentral()
|
2015-12-07 18:45:53 +00:00
|
|
|
maven {
|
|
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
|
|
|
}
|
2015-11-16 11:16:37 +00:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
2016-01-05 10:44:38 +00:00
|
|
|
configurations {
|
|
|
|
quasar
|
|
|
|
}
|
|
|
|
|
2016-03-10 16:37:10 +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.
|
2016-01-05 10:44:38 +00:00
|
|
|
|
2015-11-03 12:37:19 +00:00
|
|
|
dependencies {
|
2016-02-16 14:10:51 +00:00
|
|
|
compile project(':contracts')
|
|
|
|
|
2016-01-22 13:19:32 +00:00
|
|
|
compile "com.google.code.findbugs:jsr305:3.0.1"
|
|
|
|
compile "org.slf4j:slf4j-jdk14:1.7.13"
|
|
|
|
|
2016-03-10 16:37:10 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2015-11-09 19:27:53 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
2015-12-24 17:21:10 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
2016-01-22 13:19:32 +00:00
|
|
|
|
2016-03-10 16:37:10 +00:00
|
|
|
compile "com.google.guava:guava:19.0"
|
2015-12-03 18:24:26 +00:00
|
|
|
|
2016-02-23 17:17:46 +00:00
|
|
|
// JOpt: for command line flags.
|
2016-01-27 13:56:01 +00:00
|
|
|
compile "net.sf.jopt-simple:jopt-simple:4.9"
|
|
|
|
|
2016-01-05 10:44:38 +00:00
|
|
|
// Quasar: for the bytecode rewriting for state machines.
|
2016-03-10 16:37:10 +00:00
|
|
|
quasar "co.paralleluniverse:quasar-core:${quasar_version}:jdk8@jar"
|
2016-01-22 13:19:32 +00:00
|
|
|
|
|
|
|
// Artemis: for reliable p2p message queues.
|
2016-03-10 16:37:10 +00:00
|
|
|
compile "org.apache.activemq:artemis-server:${artemis_version}"
|
2016-01-22 13:19:32 +00:00
|
|
|
compile "org.apache.activemq:artemis-core-client:${artemis_version}"
|
2015-12-07 18:45:53 +00:00
|
|
|
|
2016-02-23 17:17:46 +00:00
|
|
|
// JAnsi: for drawing things to the terminal in nicely coloured ways.
|
|
|
|
compile "org.fusesource.jansi:jansi:1.11"
|
|
|
|
|
|
|
|
// GraphStream: For visualisation
|
2015-12-01 19:45:55 +00:00
|
|
|
compile "org.graphstream:gs-core:1.3"
|
|
|
|
compile "org.graphstream:gs-ui:1.3"
|
2016-01-05 10:44:38 +00:00
|
|
|
compile("com.intellij:forms_rt:7.0.3") {
|
|
|
|
exclude group: "asm"
|
|
|
|
}
|
2016-02-29 17:56:03 +00:00
|
|
|
|
|
|
|
// Force commons logging to version 1.2 to override Artemis, which pulls in 1.1.3 (ARTEMIS-424)
|
2016-03-10 16:37:10 +00:00
|
|
|
compile "commons-logging:commons-logging:1.2"
|
2016-02-25 14:25:14 +00:00
|
|
|
|
2016-02-26 12:53:32 +00:00
|
|
|
// Web stuff: for HTTP[S] servlets
|
|
|
|
compile "org.eclipse.jetty:jetty-servlet:${jetty_version}"
|
2016-03-09 14:43:50 +00:00
|
|
|
compile "org.eclipse.jetty:jetty-webapp:${jetty_version}"
|
2016-02-26 12:53:32 +00:00
|
|
|
compile "javax.servlet:javax.servlet-api:3.1.0"
|
2016-03-09 14:43:50 +00:00
|
|
|
compile "org.jolokia:jolokia-agent-war:2.0.0-M1"
|
2016-02-26 12:53:32 +00:00
|
|
|
compile "commons-fileupload:commons-fileupload:1.3.1"
|
|
|
|
|
2016-03-10 15:06:17 +00:00
|
|
|
// Jersey for JAX-RS implementation for use in Jetty
|
|
|
|
compile "org.glassfish.jersey.core:jersey-server:${jersey_version}"
|
|
|
|
compile "org.glassfish.jersey.containers:jersey-container-servlet-core:${jersey_version}"
|
|
|
|
compile "org.glassfish.jersey.containers:jersey-container-jetty-http:${jersey_version}"
|
|
|
|
// NOTE there is a Jackson version clash between jersey-media-json-jackson (v2.5.4) and jackson-module-kotlin (v.2.5.5)
|
|
|
|
// Have not found an Issue in the issue tracker for Jersey for this issue
|
|
|
|
compile ("org.glassfish.jersey.media:jersey-media-json-jackson:${jersey_version}") {
|
|
|
|
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-annotations'
|
|
|
|
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
|
|
|
|
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
|
|
|
|
}
|
|
|
|
compile ("com.fasterxml.jackson.module:jackson-module-kotlin:2.5.5-2") {
|
|
|
|
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-annotations'
|
|
|
|
}
|
|
|
|
compile "com.fasterxml.jackson.core:jackson-annotations:2.5.5"
|
|
|
|
|
2016-03-10 16:37:10 +00:00
|
|
|
// Coda Hale's Metrics: for monitoring of key statistics
|
|
|
|
compile "io.dropwizard.metrics:metrics-core:3.1.2"
|
|
|
|
|
2016-03-21 19:01:19 +00:00
|
|
|
// JimFS: in memory java.nio filesystem. Used for test and simulation utilities.
|
2016-03-22 10:52:24 +00:00
|
|
|
compile "com.google.jimfs:jimfs:1.1"
|
|
|
|
|
|
|
|
// TypeSafe Config: for simple and human friendly config files.
|
|
|
|
compile "com.typesafe:config:1.3.0"
|
2016-03-21 19:01:19 +00:00
|
|
|
|
2016-02-25 14:25:14 +00:00
|
|
|
// Unit testing helpers.
|
|
|
|
testCompile 'junit:junit:4.12'
|
2016-01-05 10:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// These lines tell Gradle to add a couple of JVM command line arguments to unit test and program runs, which set up
|
|
|
|
// the Quasar bytecode rewriting system so fibers can be suspended. The verifyInstrumentation line makes things run
|
|
|
|
// slower but you get a much better error message if you forget to annotate a method with @Suspendable that needs it.
|
|
|
|
//
|
|
|
|
// In Java 9 (hopefully) the requirement to annotate methods as @Suspendable will go away.
|
2016-02-23 17:17:46 +00:00
|
|
|
|
|
|
|
applicationDefaultJvmArgs = ["-javaagent:${configurations.quasar.singleFile}"]
|
2016-03-08 15:42:03 +00:00
|
|
|
mainClassName = 'demos.TraderDemoKt'
|
2016-02-23 17:17:46 +00:00
|
|
|
|
2016-01-05 10:44:38 +00:00
|
|
|
tasks.withType(Test) {
|
|
|
|
jvmArgs "-javaagent:${configurations.quasar.singleFile}"
|
|
|
|
jvmArgs "-Dco.paralleluniverse.fibers.verifyInstrumentation"
|
|
|
|
}
|
|
|
|
tasks.withType(JavaExec) {
|
|
|
|
jvmArgs "-javaagent:${configurations.quasar.singleFile}"
|
|
|
|
jvmArgs "-Dco.paralleluniverse.fibers.verifyInstrumentation"
|
2016-03-08 16:27:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Package up the other demo programs.
|
|
|
|
task getRateFixDemo(type: CreateStartScripts) {
|
|
|
|
mainClassName = "demos.RateFixDemoKt"
|
|
|
|
applicationName = "get-rate-fix"
|
|
|
|
defaultJvmOpts = ["-javaagent:${configurations.quasar.singleFile}"]
|
|
|
|
outputDir = new File(project.buildDir, 'scripts')
|
|
|
|
classpath = jar.outputs.files + project.configurations.runtime
|
|
|
|
}
|
|
|
|
|
|
|
|
applicationDistribution.into("bin") {
|
|
|
|
from(getRateFixDemo)
|
|
|
|
fileMode = 0755
|
2016-02-23 17:26:13 +00:00
|
|
|
}
|