1/* 2 * Copyright 2017-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5apply plugin: 'kotlinx-atomicfu' 6apply plugin: 'kotlin' 7 8dependencies { 9 compileOnly atomicfuJvm 10 testRuntime atomicfuJvm 11 12 compile 'org.jetbrains.kotlin:kotlin-stdlib' 13 14 testCompile 'org.jetbrains.kotlin:kotlin-test' 15 testCompile 'org.jetbrains.kotlin:kotlin-test-junit' 16 testCompile 'junit:junit:4.12' 17} 18 19compileTestKotlin.doLast { 20 file("$buildDir/test_compile_classpath.txt").text = classpath.join("\n") 21} 22 23test.doLast { 24 file("$buildDir/test_runtime_classpath.txt").text = classpath.join("\n") 25}