Fix projects for gradle integration tests

This commit is contained in:
Ilya Chernikov
2017-09-13 19:40:15 +02:00
parent 8ec5cc7d16
commit 1862c78bdc
23 changed files with 185 additions and 90 deletions
@@ -13,11 +13,15 @@ dependencies {
testCompile project(':kotlin-gradle-plugin').sourceSets.test.output
testCompile project(':kotlin-gradle-subplugin-example')
testCompile project(':kotlin-allopen')
testCompile project(':kotlin-test:kotlin-test-jvm')
testCompile project(path: ':kotlin-compiler-embeddable', configuration: 'runtimeJar')
testCompile project(path: ':examples:annotation-processor-example')
testCompile project(':kotlin-stdlib-jre8')
testCompile project(':kotlin-reflect')
testCompile project(':android-extensions-compiler')
testCompile project(path: ':kotlin-build-common', configuration: 'tests-jar')
testCompile project(path: ':compiler:incremental-compilation-impl', configuration: 'tests-jar')
testCompile 'org.jetbrains.kotlin:gradle-api:2.2'
}
@@ -28,14 +28,13 @@ configurations {
dependencies {
compile project(':kotlin-gradle-plugin-api')
compile project(path: ':kotlin-compiler-embeddable', configuration: "runtimeJar")
compile project(':kotlin-stdlib')
compile project(':android-extensions-compiler')
// compile project(path: ':compiler', configuration: 'embeddableCompilerJar')
compile project(':kotlin-build-common')
compile project(':kotlin-compiler-runner')
compile project(":compiler:incremental-compilation-impl")
compile project(":compiler:daemon")
// compileOnly project(":compiler:daemon")
compile project(path: ':kotlin-annotation-processing-gradle', configuration: "runtimeJar")
compileOnly 'com.android.tools.build:gradle:2.0.0'