You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
742 B
21 lines
742 B
/*
|
|
* Copyright 2017-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
|
|
*/
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply from: rootProject.file('gradle/compile-options.gradle')
|
|
|
|
ext.configureKotlin(org.jetbrains.kotlin.gradle.tasks.KotlinCompile)
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
compile "org.ow2.asm:asm:$asm_version"
|
|
compile "org.ow2.asm:asm-commons:$asm_version"
|
|
compile "org.ow2.asm:asm-tree:$asm_version"
|
|
compile "org.ow2.asm:asm-util:$asm_version"
|
|
compile "org.slf4j:slf4j-api:$slf4j_version"
|
|
runtime "org.slf4j:slf4j-simple:$slf4j_version"
|
|
compile "org.mozilla:rhino:1.7.10"
|
|
compile "org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.1.0"
|
|
} |