This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.gradle
219 lines (178 loc) · 5.78 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
import org.gradle.plugins.ide.eclipse.model.SourceFolder
/*
* Plugin configuration.
*/
plugins {
id 'java' // Support for Java.
id 'application' // Apply the application plugin to add support for building a CLI application.
id 'com.google.protobuf' version "0.8.18" // Support for Protocol Buffers.
id 'com.diffplug.spotless' version "6.11.0" // Apply the Spotless linter plugin.
id 'eclipse' // Support for Eclipse.
id 'idea' // Support for IntelliJ IDEA.
id 'maven-publish' // Support for publishing to Maven.
id 'signing' // Support for signing artifacts.
}
spotless {
java {
importOrder('io.grasscutter', '', 'java', 'javax', '\\#java', '\\#') // Configure import order.
googleJavaFormat("1.15.0") // Use Google's Java formatter.
.reflowLongStrings() // Reflow long strings.
formatAnnotations() // Reformat annotations.
endWithNewline() // Ensure files end with a newline.
indentWithTabs(2); indentWithSpaces(4) // Use 4 spaces for indentation.
toggleOffOn() // Toggle off/on.
}
}
/*
* Artifact information.
*/
group 'io.grasscutter'
version '2.0.0-snapshot'
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_17
/*
* Dependency configuration.
*/
repositories {
mavenCentral()
}
dependencies {
// Additional annotation packs.
implementation group: 'org.jetbrains', name: 'annotations', version: '22.0.0'
// Include any JAR-based libraries.
implementation fileTree(dir: 'libs', include: ['*.jar'])
// Software logging.
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.11'
implementation group: 'org.slf4j', name: 'jul-to-slf4j', version: '1.7.36'
// Command line interface.
implementation group: 'org.jline', name: 'jline', version: '3.21.0'
implementation group: 'org.jline', name: 'jline-terminal-jna', version: '3.21.0'
implementation group: 'net.java.dev.jna', name: 'jna', version: '5.10.0'
// Server networking.
protobuf files('src/proto/')
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.19.6'
implementation group: 'io.netty', name: 'netty-common', version: '4.1.79.Final'
implementation group: 'io.netty', name: 'netty-handler', version: '4.1.79.Final'
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.79.Final'
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.79.Final'
// HTTP implementation.
implementation(group: 'io.javalin', name: 'javalin', version: '5.4.2') {
exclude group: 'org.slf4j', module: 'slf4j-api'
}
// Data storage.
implementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.7.1'
// Encoding.
implementation group: 'com.google.code.gson', name: 'gson', version: '2.9.0'
// Game Server.
implementation group: 'com.github.davidmoten', name: 'rtree-multi', version: '0.1'
// Configure Lombok.
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
// Testing dependencies.
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
}
/*
* Compilation configuration.
*/
application {
// Set the main class for the application.
getMainClass().set('io.grasscutter.Grasscutter')
}
sourceSets {
// Configure the main source set.
main {
proto {
// Include any Protocol Buffer files.
srcDir 'src/generated'
}
java {
// Configure the Java source directory.
srcDir 'src/main/java'
}
}
// Configure the test source set.
test {
proto {
// Include any Protocol Buffer files.
srcDir 'src/generated'
}
java {
// Configure the source directory.
srcDir 'src/test/java'
}
}
}
processResources {
dependsOn 'generateProto'
}
jar {
// Exclude Protocol Buffer files.
exclude '*.proto'
// Configure JAR archive.
manifest {
attributes 'Main-Class': 'io.grasscutter.Grasscutter'
}
archiveBaseName = "grasscutter"
if(project.hasProperty('jarFilename'))
archiveFileName.set("${jarFilename}.${extension}")
// Configure bundling.
duplicatesStrategy(DuplicatesStrategy.INCLUDE)
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
// Set the destination.
destinationDirectory.set(file("${project.rootDir}/dist"))
}
/*
* Scripts.
*/
clean {
// Delete the generated files.
delete protobuf.generatedFilesBaseDir
}
task injectGitHash {
def getHash = {
try {
return 'git rev-parse --verify --short HEAD'
.execute().text.trim()
} catch (ignored) {
return 'GIT_NOT_FOUND'
}
}
new File(projectDir, "src/main/java/io/grasscutter/BuildConfig.java").text =
"""package io.grasscutter;
public final class BuildConfig {
public static final String VERSION = \"${version}\";
public static final String GIT_HASH = \"${getHash()}\";
}"""
}
/*
* Platform configuration.
*/
java {
withJavadocJar()
withSourcesJar()
}
test {
useJUnitPlatform()
}
/*
* IDE configuration.
*/
idea {
module {
// Configure the module.
sourceDirs += file('src/proto')
generatedSourceDirs += file('src/generated')
}
}
eclipse {
classpath {
file.whenMerged {
path -> path.entries.add(new SourceFolder('src/generated/main/java', null))
}
}
}