Skip to content

Commit

Permalink
Make testImplementation
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed Jun 6, 2022
1 parent a8285e4 commit 0e56810
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/base/build.gradle.kts
Expand Up @@ -21,7 +21,7 @@ dependencies {
val kotlinx_html_version: String by project
implementation("org.jetbrains.kotlinx:kotlinx-html-jvm:$kotlinx_html_version")

testCompileOnly(project(":kotlin-analysis"))
testImplementation(project(":kotlin-analysis"))
}

val projectDistDir = project(":plugins:base:frontend").file("dist")
Expand Down
2 changes: 1 addition & 1 deletion plugins/kotlin-as-java/build.gradle.kts
Expand Up @@ -8,7 +8,7 @@ dependencies {
testImplementation(project(":core:content-matcher-test-utils"))
val jsoup_version: String by project
testImplementation("org.jsoup:jsoup:$jsoup_version")
testCompileOnly(project(":kotlin-analysis"))
testImplementation(project(":kotlin-analysis"))
}

registerDokkaArtifactPublication("kotlinAsJavaPlugin") {
Expand Down

0 comments on commit 0e56810

Please sign in to comment.