eagler-teavm-fork/tools/cli/build.gradle.kts

61 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-01-03 06:29:13 -08:00
/*
* Copyright 2023 Alexey Andreev.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
plugins {
`java-library`
shadowApply
2023-04-04 05:44:23 -07:00
`teavm-publish`
2023-01-03 06:29:13 -08:00
}
description = "Command line tools"
dependencies {
implementation(project(":tools:core"))
implementation(project(":tools:devserver"))
implementation(project(":tools:c-incremental"))
implementation(libs.commons.cli)
runtimeOnly(project(":classlib"))
runtimeOnly(project(":metaprogramming:impl"))
runtimeOnly(project(":jso:impl"))
}
tasks {
shadowJar {
mergeServiceFiles()
manifest {
attributes(
"Main-Class" to "org.teavm.cli.TeaVMRunner"
)
}
}
assemble {
dependsOn(shadowJar)
}
2023-04-04 05:44:23 -07:00
}
teavmPublish {
artifactId = "teavm-cli"
}
components.configureEach {
if (name == "java") {
val config = configurations.getByName("shadowRuntimeElements")
(this as AdhocComponentWithVariants).withVariantsFromConfiguration(config) {
skip()
}
}
2023-01-03 06:29:13 -08:00
}