-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.gradle
134 lines (118 loc) · 3.42 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
plugins {
id 'org.quiltmc.loom' version '1.6.4'
id 'org.jetbrains.kotlin.jvm' version '1.9.21'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.21'
id("com.google.devtools.ksp") version "1.9.21-1.0.15"
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
archivesBaseName = project.archives_base_name
version = "${project.mod_version}+${project.minecraft_version}"
group = project.maven_group
repositories {
maven {
name = 'Ladysnake Mods'
url = 'https://maven.ladysnake.org/releases'
}
maven {
name = "Curseforge"
url "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
}
}
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
maven {
name = "Nucleoid"
url "https://maven.nucleoid.xyz/"
}
maven {
name = "TerraformersMC"
url = "https://maven.terraformersmc.com/"
}
maven {
name = "Fuzs Mod Resources"
url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/"
}
maven {
name = "JitPack"
url = "https://jitpack.io"
}
mavenLocal()
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "org.quiltmc:quilt-mappings:${minecraft_version}+build.${quilt_mappings}:intermediary-v2"
modImplementation "org.quiltmc:quilt-loader:${project.loader_version}"
// QSL
modImplementation "org.quiltmc:qsl:${qsl_version}+${minecraft_version}"
modImplementation("org.quiltmc.quilted-fabric-api:quilted-fabric-api:${qfapi_version}-${minecraft_version}") {
exclude(group: "org.quiltmc.qsl")
}
// QKL
modImplementation("org.quiltmc.quilt-kotlin-libraries:quilt-kotlin-libraries:3.0.0+kt.1.9.22+flk.1.10.17") {
exclude(group: "org.quiltmc.qsl")
}
// Hooky
implementation(project("Hooky"))
ksp(project("Hooky"))
// Cardinal components base
modImplementation("dev.onyxstudios.cardinal-components-api:cardinal-components-base:${project.cca_version}") {
exclude(group: "net.fabricmc")
exclude(group: "net.fabricmc.fabric-api")
}
include("dev.onyxstudios.cardinal-components-api:cardinal-components-base:${project.cca_version}") {
exclude(group: "net.fabricmc")
exclude(group: "net.fabricmc.fabric-api")
}
// Cardinal components entity
modImplementation("dev.onyxstudios.cardinal-components-api:cardinal-components-entity:${project.cca_version}") {
exclude(group: "net.fabricmc")
exclude(group: "net.fabricmc.fabric-api")
}
include("dev.onyxstudios.cardinal-components-api:cardinal-components-entity:${project.cca_version}") {
exclude(group: "net.fabricmc")
exclude(group: "net.fabricmc.fabric-api")
}
// Translations
modImplementation("xyz.nucleoid:server-translations-api:2.1.0+1.20.2-rc2") {
exclude(group: "net.fabricmc")
exclude(group: "net.fabricmc.fabric-api")
}
include("xyz.nucleoid:server-translations-api:2.1.0+1.20.2-rc2") {
exclude(group: "net.fabricmc")
exclude(group: "net.fabricmc.fabric-api")
}
}
processResources {
inputs.property "version", project.version
filesMatching("quilt.mod.json") {
expand "version": project.version
}
}
jar {
from "LICENSE"
}
allprojects {
tasks.withType(JavaCompile).configureEach {
options.encoding = "UTF-8"
it.options.release.set(17)
}
}
kotlin {
jvmToolchain(17)
sourceSets {
main.kotlin.srcDirs += 'build/generated/ksp/main/kotlin'
test.kotlin.srcDirs += 'build/generated/ksp/test/kotlin'
}
}