Rename module ':compiler.tests-common' -> ':compiler:tests-common'
This commit is contained in:
@@ -12,7 +12,7 @@ dependencies {
|
|||||||
compileOnly(project(":js:js.frontend"))
|
compileOnly(project(":js:js.frontend"))
|
||||||
compileOnly(ideaSdkDeps("util"))
|
compileOnly(ideaSdkDeps("util"))
|
||||||
testCompile(commonDep("junit:junit"))
|
testCompile(commonDep("junit:junit"))
|
||||||
testCompile(project(":compiler.tests-common"))
|
testCompile(project(":compiler:tests-common"))
|
||||||
testCompile(protobufFull())
|
testCompile(protobufFull())
|
||||||
testRuntime(projectDist(":kotlin-stdlib"))
|
testRuntime(projectDist(":kotlin-stdlib"))
|
||||||
testRuntime(projectDist(":kotlin-reflect"))
|
testRuntime(projectDist(":kotlin-reflect"))
|
||||||
@@ -31,4 +31,4 @@ testsJar()
|
|||||||
|
|
||||||
projectTest()
|
projectTest()
|
||||||
|
|
||||||
publish()
|
publish()
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ jvmTarget = "1.6"
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile(project(":compiler:util"))
|
compile(project(":compiler:util"))
|
||||||
compile(project(":compiler:cli"))
|
compile(project(":compiler:cli"))
|
||||||
compile(project(":compiler.tests-common"))
|
compile(project(":compiler:tests-common"))
|
||||||
compile(project(":compiler:frontend"))
|
compile(project(":compiler:frontend"))
|
||||||
compile(project(":compiler:backend"))
|
compile(project(":compiler:backend"))
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ dependencies {
|
|||||||
testCompile(commonDep("junit:junit"))
|
testCompile(commonDep("junit:junit"))
|
||||||
testCompileOnly(projectDist(":kotlin-test:kotlin-test-jvm"))
|
testCompileOnly(projectDist(":kotlin-test:kotlin-test-jvm"))
|
||||||
testCompileOnly(projectDist(":kotlin-test:kotlin-test-junit"))
|
testCompileOnly(projectDist(":kotlin-test:kotlin-test-junit"))
|
||||||
testCompile(project(":compiler.tests-common"))
|
testCompile(project(":compiler:tests-common"))
|
||||||
testCompile(project(":compiler:tests-common-jvm6"))
|
testCompile(project(":compiler:tests-common-jvm6"))
|
||||||
testCompile(project(":compiler:ir.ir2cfg"))
|
testCompile(project(":compiler:ir.ir2cfg"))
|
||||||
testCompile(project(":compiler:ir.tree")) // used for deepCopyWithSymbols call that is removed by proguard from the compiler TODO: make it more straightforward
|
testCompile(project(":compiler:ir.tree")) // used for deepCopyWithSymbols call that is removed by proguard from the compiler TODO: make it more straightforward
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ dependencies {
|
|||||||
compile(project(":compiler:cli"))
|
compile(project(":compiler:cli"))
|
||||||
compile(project(":kotlin-build-common"))
|
compile(project(":kotlin-build-common"))
|
||||||
testCompile(commonDep("junit:junit"))
|
testCompile(commonDep("junit:junit"))
|
||||||
testCompile(project(":compiler.tests-common"))
|
testCompile(project(":compiler:tests-common"))
|
||||||
testCompile(projectDist(":kotlin-test:kotlin-test-junit"))
|
testCompile(projectDist(":kotlin-test:kotlin-test-junit"))
|
||||||
testCompile(projectDist(":kotlin-stdlib"))
|
testCompile(projectDist(":kotlin-stdlib"))
|
||||||
testCompile(projectTests(":kotlin-build-common"))
|
testCompile(projectTests(":kotlin-build-common"))
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
|
|
||||||
// Have to stay in the separate dir: attempt to move it to the source root dir lead to invalid import into IDEA
|
|
||||||
|
|
||||||
apply { plugin("kotlin") }
|
apply { plugin("kotlin") }
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -31,6 +29,6 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
"main" { java.srcDir("../compiler/tests-common") }
|
"main" { projectDefault() }
|
||||||
"test" {}
|
"test" { }
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user