-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (57 loc) · 1.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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id "com.modrinth.minotaur" version "2.+"
}
group = 'me.adrigamer2950.ttp'
version = '1.0.1'
repositories {
mavenCentral()
}
dependencies {
implementation project(":bukkit")
implementation project(":velocity")
// Boosted YAML
implementation 'dev.dejvokep:boosted-yaml:1.3.7'
}
shadowJar {
archiveBaseName.set('ThemisToProxy')
archiveClassifier.set('')
//noinspection GroovyAssignabilityCheck
archiveVersion.set(version)
}
tasks.named("build").get().finalizedBy(shadowJar)
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
modrinth {
token = System.getenv("MODRINTH_TOKEN")
projectId = "themistoproxy"
versionNumber = this.version
versionType = "release"
uploadFile = shadowJar
syncBodyFrom = rootProject.file("README.md").text
gameVersions = [
"1.17",
"1.17.1",
"1.18",
"1.18.1",
"1.18.2",
"1.19",
"1.19.1",
"1.19.2",
"1.19.3",
"1.19.4",
"1.20",
"1.20.1",
"1.20.2",
"1.20.3",
"1.20.4",
"1.20.5",
"1.20.6",
"1.21",
"1.21.1"
]
loaders = ["bukkit", "spigot", "paper", "purpur", "folia", "velocity"]
}