File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ allprojects {
5757 }
5858
5959 apply plugin : ' kotlin'
60- apply plugin : ' java'
60+ apply plugin : ' java-library '
6161 apply plugin : ' idea'
6262 apply plugin : ' signing'
6363 apply plugin : ' maven-publish'
Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ dependencies {
2828
2929 // This dependency is only needed as a "sample" compiler plugin to test that
3030 // running compiler plugins passed via the pluginClasspath CLI option works
31- testRuntime " org.jetbrains.kotlin:kotlin-scripting-compiler:$kotlin_version "
31+ testRuntimeOnly " org.jetbrains.kotlin:kotlin-scripting-compiler:$kotlin_version "
3232
3333 // Include Kotlin/JS standard library in test classpath for auto loading
34- testRuntime " org.jetbrains.kotlin:kotlin-stdlib-js"
34+ testRuntimeOnly " org.jetbrains.kotlin:kotlin-stdlib-js"
3535
3636 // The Kotlin compiler should be near the end of the list because its .jar file includes
3737 // an obsolete version of Guava
38- implementation " org.jetbrains.kotlin:kotlin-compiler-embeddable:$kotlin_version "
38+ api " org.jetbrains.kotlin:kotlin-compiler-embeddable:$kotlin_version "
3939 implementation " org.jetbrains.kotlin:kotlin-annotation-processing-embeddable:$kotlin_version "
4040}
4141
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ buildscript {
44
55dependencies {
66 api project(' :core' )
7- implementation " com.google.devtools.ksp:symbol-processing-api:$ksp_version "
7+ api " com.google.devtools.ksp:symbol-processing-api:$ksp_version "
88 implementation " com.google.devtools.ksp:symbol-processing:$ksp_version "
9- implementation " org.jetbrains.kotlin:kotlin-compiler-embeddable:$kotlin_version "
109}
You can’t perform that action at this time.
0 commit comments