-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.gradle
162 lines (132 loc) · 4.26 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
plugins {
id 'java'
id 'io.github.goooler.shadow' version '8.1.8'
id 'maven-publish'
}
group 'zEssentials'
version = property("version")
project.ext {
archiveFolder = file("archive/")
targetFolder = file("target/")
buildVersion = System.getenv("BUILD_NUMBER") == null || Boolean.parseBoolean(System.getenv("STABLE_BUILD")) ? version : version + "-b" + System.getenv("BUILD_NUMBER")
}
allprojects {
apply plugin: 'java'
apply plugin: 'io.github.goooler.shadow'
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
repositories {
maven { url "https://repo.papermc.io/repository/maven-public/" }
maven { url 'https://jitpack.io' }
maven { url = 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
compileOnly("com.github.maxlego08:zMenu-API:85e5147698")
implementation "com.github.technicallycoded:FoliaLib:0.4.3"
implementation 'com.github.Maxlego08:Sarah:1.12'
implementation 'fr.mrmicky:fastboard:2.1.3'
}
tasks.register('checkDebug') {
doLast {
def filesWithDebug = fileTree('src/main/java').filter { file ->
file.text.contains('System.out.println')
}
if (!filesWithDebug.isEmpty()) {
println "Found debug messages in the following files:"
filesWithDebug.each { file ->
println "File: ${file.path}"
file.eachLine { line, number ->
if (line.contains('System.out.println')) {
println "Line ${number}: ${line.trim()}"
}
}
println "--------------------"
}
} else {
println "No debug messages found."
}
}
}
build {
dependsOn checkDebug
dependsOn shadowJar
}
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile).tap {
configureEach {
options.encoding = 'UTF-8'
}
}
}
subprojects {
shadowJar {
archiveFileName = "${project.name}.jar"
destinationDirectory = rootProject.archiveFolder
}
}
repositories {
mavenCentral()
}
dependencies {
implementation fileTree(rootProject.archiveFolder.getAbsolutePath())
implementation 'org.bstats:bstats-bukkit:3.0.0'
implementation project(":API")
compileOnly 'me.clip:placeholderapi:2.11.5'
}
jar {
from {
for (File file : rootProject.archiveFolder.listFiles()) {
zipTree(file)
}
}
}
processResources {
outputs.upToDateWhen { false }
def props = [version: version]
inputs.properties props
filteringCharset 'UTF-8'
filesMatching('plugin.yml') {
expand props
}
}
shadowJar {
dependsOn(jar)
relocate 'org.bstats', 'fr.maxlego08.essentials.libs.bstats'
relocate 'com.tcoded.folialib', 'fr.maxlego08.essentials.libs.folialib'
relocate 'fr.maxlego08.sarah', 'fr.maxlego08.essentials.libs.sarah'
relocate 'fr.mrmicky.fastboard', 'fr.maxlego08.essentials.libs.fastboard'
archiveFileName = rootProject.name + "-" + rootProject.buildVersion + ".jar"
delete fileTree(rootProject.targetFolder.getAbsolutePath())
exclude '*exclude.jar'
destinationDirectory = rootProject.targetFolder
from sourceSets.getByName("main").output
configurations = [project.configurations.getByName("runtimeClasspath")]
}
tasks.register('copyAPI', Copy) {
dependsOn ':API:build'
from rootProject.archiveFolder.getAbsolutePath() + '/API.jar'
into rootProject.targetFolder.getAbsolutePath()
rename('API.jar', rootProject.name + 'API.jar')
}
clean {
delete rootProject.archiveFolder
}
build {
dependsOn shadowJar
dependsOn copyAPI
dependsOn clean
}
publish.shouldRunAfter shadowJar
shadowJar.shouldRunAfter build
build.shouldRunAfter subprojects.build
clean.shouldRunAfter copyAPI
shadowJar.dependsOn subprojects.build
compileJava.dependsOn childProjects.values().shadowJar
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}