4aa3040550
maven-publish plugin uses `runtimeOnly` for runtime scope instead of `runtime`
31 lines
695 B
Kotlin
31 lines
695 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlinStdlib())
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
|
|
implementation(project(":libraries:tools:new-project-wizard"))
|
|
implementation("org.yaml:snakeyaml:1.24")
|
|
|
|
testImplementation(projectTests(":compiler:tests-common"))
|
|
testImplementation(project(":kotlin-test:kotlin-test-junit"))
|
|
testImplementation(project(":kotlin-reflect"))
|
|
testImplementation(commonDep("junit:junit"))
|
|
testImplementation(intellijDep())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
projectTest {
|
|
dependsOn(":dist")
|
|
workingDir = rootDir
|
|
}
|
|
|
|
testsJar()
|