mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-05-31 21:54:12 +00:00
28 lines
430 B
Plaintext
28 lines
430 B
Plaintext
// SPDX-FileCopyrightText: 2023 The CC: Tweaked Developers
|
|
//
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
plugins {
|
|
application
|
|
alias(libs.plugins.kotlin)
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.bundles.asm)
|
|
implementation(libs.bundles.kotlin)
|
|
}
|
|
|
|
tasks.jar {
|
|
manifest.attributes("Main-Class" to "cc.tweaked.build.MainKt")
|
|
}
|