forked from EinsLucaaa/AutoGG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
46 lines (36 loc) · 1.21 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
plugins {
id("java-library")
id("net.labymod.labygradle")
id("net.labymod.labygradle.addon")
}
group = "top.einsluca"
version = "1.0.0"
java.toolchain.languageVersion.set(JavaLanguageVersion.of(21))
val versions = providers.gradleProperty("net.labymod.minecraft-versions").get().split(";")
labyMod {
defaultPackageName = "top.einsluca.autogg" //change this to your main package name (used by all modules)
minecraft {
registerVersion(versions.toTypedArray()) {
runs {
getByName("client") {
// When the property is set to true, you can log in with a Minecraft account
// devLogin = true
}
}
}
}
addonInfo {
namespace = "auto-gg"
displayName = "AutoGG"
author = "EinsLuca"
description = "Make yourself more likeable by automatically writing a GG in the chat after each round."
minecraftVersion = "*"
version = System.getenv().getOrDefault("VERSION", "1.0.0")
}
}
subprojects {
plugins.apply("net.labymod.labygradle")
plugins.apply("net.labymod.labygradle.addon")
group = rootProject.group
version = rootProject.version
}