import javax.tools.ToolProvider

buildscript {
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

apply plugin: 'kotlin'

sourceCompatibility = 1.5

configurations {
    provided
}

tasks.withType(AbstractCompile) {
    classpath += configurations.provided
}

tasks.withType(Test) {
    classpath += configurations.provided
}

dependencies {
    compile group: 'org.jetbrains.kotlin', name: 'kotlin-runtime', version: kotlin_version
    compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: kotlin_version

    compile group: 'com.google.inject', name: 'guice', version: '3.0'
    compile "org.jsoup:jsoup:1.8.3"

    compile files("../lib/intellij-core-analysis.jar")
    compile files("../lib/kotlin-compiler.jar")
    compile files("../lib/kotlin-script-runtime.jar")
    compile files("../lib/kotlin-ide-common.jar")
    compile files("../lib/markdown.jar")
    compile files("../lib/picocontainer.jar")

    runtime "org.fusesource.jansi:jansi:1.11"

    runtime files("../lib/trove4j.jar")
    runtime files("../lib/jdom.jar")
    runtime files("../lib/protobuf-2.5.0-lite.jar")
    runtime files("../lib/asm-all.jar")
    runtime files("../lib/jps-model.jar")

    //tools.jar
    provided files(((URLClassLoader) ToolProvider.getSystemToolClassLoader()).getURLs().findAll { it.path.endsWith("jar") })

    compile project(":integration")

    testCompile group: 'junit', name: 'junit', version: '4.12'
    testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit', version: kotlin_version
}