aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/generator-cli/build.gradle.kts
blob: 6c6812226b1086e1d37b21cf08e361b42fad4179 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

plugins {
	id("tools.refinery.gradle.java-application")
}

dependencies {
	implementation(project(":refinery-generator"))
	implementation(libs.jcommander)
	implementation(libs.slf4j.api)
}

application {
	mainClass.set("tools.refinery.generator.cli.RefineryCli")
}

tasks.shadowJar {
	// Silence Xtext warning.
	append("plugin.properties")
}