group 'com.r3cev.prototyping'
version '1.0-SNAPSHOT'

apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'application'

allprojects {
    sourceCompatibility = 1.8
    targetCompatibility = 1.8
}

buildscript {
    ext.kotlin_version = '1.0.0'
    // 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'
    ext.asm_version = '0.5.3'
    ext.artemis_version = '1.2.0'
    ext.jetty_version = '9.3.7.v20160115'

    repositories {
        mavenCentral()
        jcenter()
    }
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}


repositories {
    mavenLocal()
    mavenCentral()
    maven {
        url 'http://oss.sonatype.org/content/repositories/snapshots'
    }
    jcenter()
}

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()
    }
}

dependencies {
    compile project(':contracts')

    compile "com.google.code.findbugs:jsr305:3.0.1"
    compile "org.slf4j:slf4j-jdk14:1.7.13"

    compile("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version") {
        force = true
    }
    compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
    compile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"

    compile("com.google.guava:guava:19.0") {
        force = true     // Conflict between Quasar and Artemis
    }

    // JOpt: for command line flags.
    compile "net.sf.jopt-simple:jopt-simple:4.9"

    // Quasar: for the bytecode rewriting for state machines.
    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
    }
    compile "org.apache.activemq:artemis-core-client:${artemis_version}"

    // JAnsi: for drawing things to the terminal in nicely coloured ways.
    compile "org.fusesource.jansi:jansi:1.11"

    // GraphStream: For visualisation
    compile "org.graphstream:gs-core:1.3"
    compile "org.graphstream:gs-ui:1.3"
    compile("com.intellij:forms_rt:7.0.3") {
        exclude group: "asm"
    }

    // Force commons logging to version 1.2 to override Artemis, which pulls in 1.1.3 (ARTEMIS-424)
    compile("commons-logging:commons-logging:1.2") {
        force = true
    }

    // Web stuff: for HTTP[S] servlets
    compile "org.eclipse.jetty:jetty-servlet:${jetty_version}"
    compile "javax.servlet:javax.servlet-api:3.1.0"
    compile "commons-fileupload:commons-fileupload:1.3.1"

    // Unit testing helpers.
    testCompile 'junit:junit:4.12'
    testCompile 'com.google.jimfs:jimfs:1.1'   // in memory java.nio filesystem.
}

// 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.

applicationDefaultJvmArgs = ["-javaagent:${configurations.quasar.singleFile}"]
mainClassName = 'demos.TraderDemoKt'

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"
}