Make dependencies on :kotlin-compiler project testRuntimeOnly everywhere

This commit is contained in:
Vyacheslav Gerasimov
2018-09-04 21:24:05 +03:00
parent 53a1526412
commit b868450e9a
11 changed files with 13 additions and 11 deletions
@@ -10,7 +10,8 @@ dependencies {
compile(projectDist(":kotlin-stdlib"))
compile(projectDist(":kotlin-reflect"))
compileOnly(project(":compiler:util"))
runtime(projectRuntimeJar(":kotlin-compiler"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testCompile(commonDep("junit"))
}
@@ -8,7 +8,7 @@ dependencies {
compile(project(":examples:scripting-jvm-simple-script"))
compile(project(":kotlin-scripting-jvm-host"))
compile(project(":kotlin-script-util"))
runtime(projectRuntimeJar(":kotlin-compiler"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testCompile(commonDep("junit"))
}
@@ -19,7 +19,7 @@ dependencies {
testCompile(project(":kotlin-test:kotlin-test-junit"))
testRuntime(project(":kotlin-reflect"))
testCompile(commonDep("junit:junit"))
testRuntime(projectRuntimeJar(":kotlin-compiler"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testRuntime("com.jcabi:jcabi-aether:0.10.1")
testRuntime("org.sonatype.aether:aether-api:1.13.1")
testRuntime("org.apache.maven:maven-core:3.0.3")
@@ -19,7 +19,7 @@ dependencies {
testCompile(project(":kotlin-test:kotlin-test-junit"))
testRuntime(project(":kotlin-reflect"))
testCompile(commonDep("junit:junit"))
testRuntime(projectRuntimeJar(":kotlin-compiler"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testRuntime("com.jcabi:jcabi-aether:0.10.1")
testRuntime("org.sonatype.aether:aether-api:1.13.1")
testRuntime("org.apache.maven:maven-core:3.0.3")
@@ -19,7 +19,7 @@ dependencies {
testCompile(project(":kotlin-test:kotlin-test-junit"))
testRuntime(project(":kotlin-reflect"))
testCompile(commonDep("junit:junit"))
testRuntime(projectRuntimeJar(":kotlin-compiler"))
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
testRuntime("com.jcabi:jcabi-aether:0.10.1")
testRuntime("org.sonatype.aether:aether-api:1.13.1")
testRuntime("org.apache.maven:maven-core:3.0.3")