Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import org.jetbrains.kotlin.gradle.dsl.JvmTarget
- import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
- plugins {
- kotlin("jvm") version "2.0.20"
- id("fabric-loom") version "1.7.1"
- id("maven-publish")
- }
- version = project.property("mod_version") as String
- group = project.property("maven_group") as String
- base {
- archivesName.set(project.property("archives_base_name") as String)
- }
- val targetJavaVersion = 17
- java {
- toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
- // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
- // if it is present.
- // If you remove this line, sources will not be generated.
- withSourcesJar()
- }
- loom {
- splitEnvironmentSourceSets()
- mods {
- register("mysticrealms") {
- sourceSet("main")
- sourceSet("client")
- }
- }
- }
- repositories {
- maven {
- name = "0mods mavenReleases"
- url = uri("https://maven.0mods.team/releases")
- }
- mavenCentral()
- }
- dependencies {
- // To change the versions see the gradle.properties file
- val imguiVersion: String by project
- minecraft("com.mojang:minecraft:${project.property("minecraft_version")}")
- mappings(loom.officialMojangMappings())
- modImplementation("net.fabricmc:fabric-loader:${project.property("loader_version")}")
- modImplementation("net.fabricmc:fabric-language-kotlin:${project.property("kotlin_loader_version")}")
- modImplementation("net.fabricmc.fabric-api:fabric-api:${project.property("fabric_version")}")
- //hollow core
- minecraftRuntimeLibraries(compileOnly("team.0mods:imgui-app:$imguiVersion")) {}
- minecraftRuntimeLibraries(compileOnly("team.0mods:imgui-binding:$imguiVersion")) {}
- minecraftRuntimeLibraries(compileOnly("team.0mods:imgui-lwjgl3:$imguiVersion")) {}
- minecraftRuntimeLibraries(compileOnly("team.0mods:imgui-binding-natives:$imguiVersion")) {}
- minecraftRuntimeLibraries("com.akuleshov7:ktoml-core-jvm:0.5.1")
- minecraftRuntimeLibraries(compileOnly("team.0mods:imgui-app:$imguiVersion")) {}
- minecraftRuntimeLibraries(compileOnly("team.0mods:imgui-binding:$imguiVersion")) {}
- minecraftRuntimeLibraries(compileOnly("team.0mods:imgui-lwjgl3:$imguiVersion")) {}
- minecraftRuntimeLibraries(compileOnly("team.0mods:imgui-binding-natives:$imguiVersion")) {}
- minecraftRuntimeLibraries("effekseer.swig:Swig:1.0")
- minecraftRuntimeLibraries("com.tianscar.imageio:imageio-apng:1.0.1")
- minecraftRuntimeLibraries("org.joml:joml:1.10.8")
- minecraftRuntimeLibraries("org.jetbrains.kotlin:kotlin-reflect:2.0.0") { exclude("org.jetbrains.kotlin") }
- minecraftRuntimeLibraries("org.jetbrains.kotlin:kotlin-scripting-jvm:2.0.0") { exclude("org.jetbrains.kotlin") }
- minecraftRuntimeLibraries("org.jetbrains.kotlin:kotlin-scripting-jvm-host:2.0.0") { exclude("org.jetbrains.kotlin") }
- minecraftRuntimeLibraries("org.jetbrains.kotlin:kotlin-script-runtime:2.0.0") { exclude("org.jetbrains.kotlin") }
- minecraftRuntimeLibraries("org.jetbrains.kotlin:kotlin-compiler-embeddable-mcfriendly:2.0.0") { exclude("org.jetbrains.kotlin") }
- minecraftRuntimeLibraries("org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:2.0.0") { exclude("org.jetbrains.kotlin") }
- minecraftRuntimeLibraries("org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:2.0.0") { exclude("org.jetbrains.kotlin") }
- minecraftRuntimeLibraries("org.jetbrains.kotlin:kotlin-metadata-jvm:2.0.0") { exclude("org.jetbrains.kotlin") }
- minecraftRuntimeLibraries("org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.0.0") { exclude("org.jetbrains.kotlin") }
- minecraftRuntimeLibraries("org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.4.0") { exclude("org.jetbrains.kotlin") }
- minecraftRuntimeLibraries("org.jetbrains.kotlin:kotlin-scripting-common:2.0.0") { exclude("org.jetbrains.kotlin") }
- implementation("ru.hollowhorizon:HollowCore-fabric-1.19.2:2.0.9:dev")
- }
- tasks.processResources {
- inputs.property("version", project.version)
- inputs.property("minecraft_version", project.property("minecraft_version"))
- inputs.property("loader_version", project.property("loader_version"))
- filteringCharset = "UTF-8"
- filesMatching("fabric.mod.json") {
- expand(
- "version" to project.version,
- "minecraft_version" to project.property("minecraft_version"),
- "loader_version" to project.property("loader_version"),
- "kotlin_loader_version" to project.property("kotlin_loader_version")
- )
- }
- }
- tasks.withType<JavaCompile>().configureEach {
- // ensure that the encoding is set to UTF-8, no matter what the system default is
- // this fixes some edge cases with special characters not displaying correctly
- // see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
- // If Javadoc is generated, this must be specified in that task too.
- options.encoding = "UTF-8"
- options.release.set(targetJavaVersion)
- }
- tasks.withType<KotlinCompile>().configureEach {
- compilerOptions.jvmTarget.set(JvmTarget.fromTarget(targetJavaVersion.toString()))
- }
- tasks.jar {
- from("LICENSE") {
- rename { "${it}_${project.base.archivesName}" }
- }
- }
- // configure the maven publication
- publishing {
- publications {
- create<MavenPublication>("mavenJava") {
- artifactId = project.property("archives_base_name") as String
- from(components["java"])
- }
- }
- // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
- repositories {
- // Add repositories to publish to here.
- // Notice: This block does NOT have the same function as the block in the top level.
- // The repositories here will be used for publishing your artifact, not for
- // retrieving dependencies.
- }
- }
Add Comment
Please, Sign In to add comment