Files
kotlin-fork/libraries/tools/new-project-wizard/build.gradle.kts
T
2020-03-26 09:39:19 +03:00

29 lines
744 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api("org.apache.velocity:velocity:1.7") // we have to use the old version as it is the same as bundled into IntelliJ
compileOnly(project(":kotlin-reflect-api"))
//needed only for message bundles
implementation(intellijDep()) { includeJars("util") }
testImplementation(project(":kotlin-test:kotlin-test-junit"))
testImplementation(commonDep("junit:junit"))
implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm:${property("versions.kotlinx-collections-immutable")}")
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
projectTest {
dependsOn(":dist")
workingDir = rootDir
}
testsJar()