generated from SmushyTaco/Example-Mod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
83 lines (83 loc) · 3.46 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
plugins {
id("fabric-loom")
val kotlinVersion: String by System.getProperties()
kotlin("jvm").version(kotlinVersion)
}
base {
val archivesBaseName: String by project
archivesName.set(archivesBaseName)
}
val modVersion: String by project
val minecraftVersion: String by project
version = "$modVersion-$minecraftVersion"
val mavenGroup: String by project
group = mavenGroup
repositories {
mavenCentral()
maven {
name = "Ladysnake Mods"
url = uri("https://ladysnake.jfrog.io/artifactory/mods")
}
maven { url = uri("https://www.cursemaven.com") }
maven {
url = uri("https://jitpack.io")
}
maven { url = uri("https://nexus.resourcefulbees.com/repository/maven-public/")}
maven { url = uri("https://maven.terraformersmc.com/") }
}
tasks.test {
useJUnitPlatform()
}
dependencies {
minecraft("com.mojang:minecraft:$minecraftVersion")
val yarnMappings: String by project
mappings("net.fabricmc:yarn:$yarnMappings:v2")
val loaderVersion: String by project
modImplementation("net.fabricmc:fabric-loader:$loaderVersion")
val fabricVersion: String by project
modImplementation("net.fabricmc.fabric-api:fabric-api:$fabricVersion")
val fabricKotlinVersion: String by project
modImplementation("net.fabricmc:fabric-language-kotlin:$fabricKotlinVersion")
val cardinalComponentsVersion: String by project
modImplementation("dev.onyxstudios.cardinal-components-api:cardinal-components-base:$cardinalComponentsVersion")
modImplementation("dev.onyxstudios.cardinal-components-api:cardinal-components-chunk:$cardinalComponentsVersion")
val maelstromVersion: String by project
modImplementation("com.github.miyo6032:maelstrom-lib:${maelstromVersion}")
include("com.github.miyo6032:maelstrom-lib:${maelstromVersion}")
val junitVersion: String by project
val junitCoreVersion: String by project
testImplementation("org.assertj:assertj-core:${junitCoreVersion}")
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testImplementation("org.junit.jupiter:junit-jupiter-params:${junitVersion}")
testImplementation("org.hamcrest:hamcrest-library:2.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
modRuntimeOnly("curse.maven:disablecustomworldsadvice-401978:3677546")
modRuntimeOnly("com.telepathicgrunt:CommandStructures-Fabric:2.0.0+1.18.2")
val modmenuVersion: String by project
modRuntimeOnly("com.terraformersmc:modmenu:${modmenuVersion}")
}
tasks {
val javaVersion = JavaVersion.VERSION_17
withType<JavaCompile> {
options.encoding = "UTF-8"
sourceCompatibility = javaVersion.toString()
targetCompatibility = javaVersion.toString()
options.release.set(javaVersion.toString().toInt())
}
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions { jvmTarget = javaVersion.toString() }
sourceCompatibility = javaVersion.toString()
targetCompatibility = javaVersion.toString()
}
jar { from("LICENSE") { rename { "${it}_${base.archivesName}" } } }
processResources {
inputs.property("version", project.version)
filesMatching("fabric.mod.json") { expand(mutableMapOf("version" to project.version)) }
}
java {
toolchain { languageVersion.set(JavaLanguageVersion.of(javaVersion.toString())) }
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
withSourcesJar()
}
}