This repository has been archived by the owner on Mar 30, 2024. It is now read-only.
generated from Archived-Repositorie/kotlin-mod-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
73 lines (57 loc) · 1.43 KB
/
build.gradle
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
plugins {
id 'fabric-loom' version '1.2-SNAPSHOT'
id 'maven-publish'
id 'org.jetbrains.kotlin.jvm'
id "com.ncorti.ktfmt.gradle" version '0.12.0'
}
ktfmt {
kotlinLangStyle()
}
loom {
serverOnlyMinecraftJar()
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = sourceCompatibility
archivesBaseName = project.mod_id
version = project.mod_version
group = project.maven_group
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.minecraft_version}+${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc:fabric-language-kotlin:${project.fabric_kotlin_version}.${project.kotlin_version}"
testImplementation "net.fabricmc:fabric-loader-junit:${project.loader_version}"
String mixin_extras = "com.github.LlamaLad7:MixinExtras:${project.mixin_extras}"
implementation(mixin_extras)
annotationProcessor(mixin_extras)
include(mixin_extras)
}
processResources {
expand(project.properties)
}
tasks.withType(JavaCompile).configureEach {
it.options.release = 17
}
java {
withSourcesJar()
}
jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"}
}
}
ktfmt {
kotlinLangStyle()
}
test {
useJUnitPlatform()
}
tasks {
test {
systemProperty("fabric.side", "server")
}
}
compileKotlin.kotlinOptions.jvmTarget = "17"