-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle.kts
50 lines (40 loc) · 1.35 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
plugins {
id("java")
id("fabric-loom") version("1.4-SNAPSHOT")
kotlin("jvm") version ("1.8.20")
}
group = property("maven_group")!!
version = property("mod_version")!!
repositories {
mavenLocal()
mavenCentral()
maven("https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/")
maven("https://maven.impactdev.net/repository/development/")
maven("https://api.modrinth.com/maven")
}
dependencies {
minecraft("com.mojang:minecraft:${property("minecraft_version")}")
mappings("net.fabricmc:yarn:${property("yarn_mappings")}")
modImplementation("net.fabricmc:fabric-loader:${property("loader_version")}")
// Fabric API
modImplementation("net.fabricmc.fabric-api:fabric-api:${property("fabric_version")}")
// Fabric Kotlin
modImplementation("net.fabricmc:fabric-language-kotlin:${property("fabric_kotlin_version")}")
// Cobblemon
modImplementation("com.cobblemon:fabric:${property("cobblemon_version")}")
//modImplementation("maven.modrinth:cobblemon-counter:${property("counter_version")}")
}
tasks {
processResources {
inputs.property("version", project.version)
filesMatching("fabric.mod.json") {
expand(mutableMapOf("version" to project.version))
}
}
jar {
from("LICENSE")
}
compileKotlin {
kotlinOptions.jvmTarget = "17"
}
}