We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a16a81 commit 76aa413Copy full SHA for 76aa413
compiler/cli/cli-arguments-generator/build.gradle.kts
@@ -0,0 +1,32 @@
1
+plugins {
2
+ kotlin("jvm")
3
+ id("jps-compatible")
4
+ application
5
+}
6
+
7
+val runtimeOnly by configurations
8
+val compileOnly by configurations
9
+runtimeOnly.extendsFrom(compileOnly)
10
11
+dependencies {
12
+ implementation(project(":generators"))
13
+ implementation(project(":core:compiler.common"))
14
+ implementation(project(":compiler:arguments"))
15
+ implementation(project(":compiler:plugin-api"))
16
17
+ compileOnly(intellijCore())
18
19
+ runtimeOnly(intellijJDom())
20
+ runtimeOnly(commonDependency("org.jetbrains.kotlin:kotlin-reflect"))
21
22
23
+application {
24
+ mainClass.set("org.jetbrains.kotlin.cli.arguments.generator.MainKt")
25
26
27
+sourceSets {
28
+ "main" {
29
+ projectDefault()
30
+ }
31
+ "test" {}
32
0 commit comments