Files
kotlin-fork/libraries/tools/binary-compatibility-validator/build.gradle
T
Alexander Udalov f4b6db4dc0 Change format of -X arguments to require value after '='
Report a warning when an argument is passed in the old form (with the
whitespace)

 #KT-17264 Fixed
2017-04-14 20:07:54 +03:00

31 lines
706 B
Groovy

apply plugin: 'kotlin'
dependencies {
compile project(':kotlin-stdlib')
compile 'org.ow2.asm:asm-debug-all:5.0.4'
compile 'com.google.code.gson:gson:2.6.2'
testCompile project(':kotlin-test:kotlin-test-junit')
}
sourceSets {
test {
java {
srcDir "src/test/kotlin"
}
}
}
compileTestKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xdump-declarations-to=${buildDir}/cases-declarations.json"]
}
}
test {
dependsOn cleanCompileTestKotlin
dependsOn(':kotlin-runtime:jar')
dependsOn(':kotlin-stdlib:originalStdlibJar')
systemProperties['overwrite.output'] = System.getProperty("overwrite.output", "false")
jvmArgs '-ea'
}