android13/external/kotlinx.atomicfu/atomicfu-transformer/build.gradle

21 lines
715 B
Groovy

/*
* 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()
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:$kotlinx_metadata_version"
}