Files
kotlin-fork/libraries/tools/new-project-wizard/build.gradle.kts
T
2020-12-09 18:16:06 +03:00

31 lines
941 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
// Wizard backend is reused in the KMM plugin. Please take a look at https://jetbrains.quip.com/LBjwAw0H3w8H
// before adding new dependencies on the Kotlin plugin parts.
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"))
implementation(intellijDep()) { includeJars("util") } //needed only for message bundles
testImplementation(intellijDep()) { includeJars("trove4j") } //needed only for message bundles
testImplementation(project(":kotlin-test:kotlin-test-junit"))
implementation(kotlinxCollectionsImmutable())
implementation("com.google.code.gson:gson:2.8.6")
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
projectTest {
dependsOn(":dist")
workingDir = rootDir
}
testsJar()