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'
|
|
|
|
|
|
|
|
// apply plugin: 'org.jetbrains.dokka'
|
2015-11-03 12:37:19 +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-02-08 18:35:30 +00:00
|
|
|
ext.kotlin_version = '1.0.0-rc-1036'
|
2016-01-22 11:00:14 +00:00
|
|
|
ext.quasar_version = '0.7.4'
|
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-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-02-08 18:35:30 +00:00
|
|
|
|
|
|
|
// Dokka (JavaDoc equivalent for Kotlin) download is huge so just comment this out for now.
|
2016-02-11 15:03:27 +00:00
|
|
|
// classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.9.6"
|
2015-11-03 12:37:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-05 10:44:38 +00:00
|
|
|
|
2015-11-16 11:16:37 +00:00
|
|
|
repositories {
|
2016-01-12 10:41:32 +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
|
|
|
|
}
|
|
|
|
|
|
|
|
// This block makes Gradle print an error and refuse to continue if we get multiple versions of the same library
|
|
|
|
// included simultaneously.
|
|
|
|
configurations.all() {
|
|
|
|
resolutionStrategy {
|
|
|
|
failOnVersionConflict()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-03 12:37:19 +00:00
|
|
|
dependencies {
|
2016-01-05 10:44:38 +00:00
|
|
|
testCompile 'junit:junit:4.12'
|
2016-01-22 13:19:32 +00:00
|
|
|
|
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"
|
|
|
|
|
2015-11-03 12:37:19 +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
|
|
|
|
|
|
|
compile("com.google.guava:guava:19.0") {
|
|
|
|
force = true // Conflict between Quasar and Artemis
|
2016-01-05 10:44:38 +00:00
|
|
|
}
|
2015-12-03 18:24:26 +00:00
|
|
|
|
2016-01-27 13:56:01 +00:00
|
|
|
compile "net.sf.jopt-simple:jopt-simple:4.9"
|
|
|
|
|
2016-01-22 13:19:32 +00:00
|
|
|
compile("com.esotericsoftware:kryo:3.0.3")
|
|
|
|
compile "de.javakaffee:kryo-serializers:0.37"
|
2015-11-03 12:37:19 +00:00
|
|
|
|
2016-01-05 10:44:38 +00:00
|
|
|
// Quasar: for the bytecode rewriting for state machines.
|
2016-01-22 13:19:32 +00:00
|
|
|
compile("co.paralleluniverse:quasar-core:${quasar_version}:jdk8")
|
|
|
|
quasar("co.paralleluniverse:quasar-core:${quasar_version}:jdk8@jar")
|
|
|
|
|
|
|
|
// Artemis: for reliable p2p message queues.
|
|
|
|
compile("org.apache.activemq:artemis-server:${artemis_version}") {
|
|
|
|
exclude group: "com.google.guava", module: "guava" // Artemis is on Guava 18
|
2016-01-05 10:44:38 +00:00
|
|
|
}
|
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
|
|
|
|
2015-12-01 19:45:55 +00:00
|
|
|
// For visualisation
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
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"
|
2015-11-03 12:37:19 +00:00
|
|
|
}
|
2016-01-27 13:56:01 +00:00
|
|
|
|
|
|
|
mainClassName = 'core.node.TraderDemoKt'
|
|
|
|
|
|
|
|
task runDemoBuyer(type: JavaExec, dependsOn: ':classes') {
|
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
|
|
main = 'core.node.TraderDemoKt'
|
2016-02-05 14:48:58 +00:00
|
|
|
args = ['--dir=buyer', '--service-fake-trades', '--network-address=localhost']
|
2016-01-27 13:56:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task runDemoSeller(type: JavaExec, dependsOn: ':classes') {
|
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
|
|
main = 'core.node.TraderDemoKt'
|
2016-02-05 14:48:58 +00:00
|
|
|
args = ['--dir=seller', '--fake-trade-with=localhost', '--network-address=localhost:31338',
|
|
|
|
'--timestamper-identity-file=buyer/identity-public', '--timestamper-address=localhost']
|
2016-01-27 13:56:01 +00:00
|
|
|
}
|