aboutsummaryrefslogtreecommitdiff
path: root/atomicfu-gradle-plugin/src/test/resources/projects/js-simple/build.gradle
blob: 31dbec6730de50ae9cac74101bfed0c64aae1d4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright 2017-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

apply plugin: 'kotlinx-atomicfu'
apply plugin: 'kotlin2js'

dependencies {
    compileOnly atomicfuJs
    testRuntime atomicfuJs

    compile 'org.jetbrains.kotlin:kotlin-stdlib-js'
    testCompile 'org.jetbrains.kotlin:kotlin-test-js'
}

compileTestKotlin2Js.doLast {
    file("$buildDir/test_compile_classpath.txt").text = classpath.join("\n")
}