build.gradle 8.26 KB
Newer Older
Melledy's avatar
Melledy committed
1
2
3
4
5
6
7
8
/*
 * This file was generated by the Gradle 'init' task.
 *
 * This generated file contains a sample Java project to get you started.
 * For more details take a look at the Java Quickstart chapter in the Gradle
 * User Manual available at https://docs.gradle.org/5.6.3/userguide/tutorial_java_projects.html
 */

9
10
11
12
13
14
15
16
17
buildscript {
    repositories {
        maven { url "https://plugins.gradle.org/m2/" }
    }
    dependencies {
        classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.18'
    }
}

Melledy's avatar
Melledy committed
18
plugins {
19
20
21
    // Apply the application plugin to add support for building a CLI application
    id 'application'

Melledy's avatar
Melledy committed
22
23
24
    // Apply the java plugin to add support for Java
    id 'java'

25
26
27
    // Apply the protobuf auto generator
    id 'com.google.protobuf' version "0.8.18"

28
    // Eclipse Support
Melledy's avatar
Melledy committed
29
30
    id 'eclipse'

31
    // IntelliJ Support
32
    id 'idea'
KingRainbow44's avatar
KingRainbow44 committed
33

34
    // Maven
KingRainbow44's avatar
KingRainbow44 committed
35
36
    id 'maven-publish'
    id 'signing'
37
38
39

    // Lombok for delombok'ification
    id "io.freefair.lombok" version "6.6.1"
Melledy's avatar
Melledy committed
40
41
}

krrr's avatar
krrr committed
42
43
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
44
45
46
47

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

48
group = 'xyz.grasscutters'
KingRainbow44's avatar
KingRainbow44 committed
49
version = '1.4.6'
50

真心's avatar
真心 committed
51
52
sourceCompatibility = 17
targetCompatibility = 17
Melledy's avatar
Melledy committed
53

KingRainbow44's avatar
KingRainbow44 committed
54
55
56
57
58
java {
    withJavadocJar()
    withSourcesJar()
}

Melledy's avatar
Melledy committed
59
60
61
62
63
repositories {
    mavenCentral()
}

dependencies {
64
    implementation fileTree(dir: 'lib', include: ['*.jar'])
65

AnimeGitB's avatar
AnimeGitB committed
66
67
    implementation group: 'it.unimi.dsi', name: 'fastutil', version: '8.5.8'

Melledy's avatar
Melledy committed
68
69
70
    implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.36'
    implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.2.11'
    implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.11'
71
72
73
74
75

    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'

Melledy's avatar
Melledy committed
76
77
78
79
    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'
Melledy's avatar
Melledy committed
80

81
    implementation group: 'com.google.code.gson', name: 'gson', version: '2.9.0'
82
83
84
85
    implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.18.2'

    implementation group: 'org.reflections', name: 'reflections', version: '0.10.2'

86
    implementation group: 'dev.morphia.morphia', name: 'morphia-core', version: '2.2.7'
87
88

    implementation group: 'org.greenrobot', name: 'eventbus-java', version: '3.3.1'
89
    //implementation group: 'org.danilopianini', name: 'java-quadtree', version: '0.1.9'
90

Yazawazi's avatar
Yazawazi committed
91
92
    implementation group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.2'
    implementation group: 'org.quartz-scheduler', name: 'quartz-jobs', version: '2.3.2'
93

94
    implementation group: 'org.luaj', name: 'luaj-jse', version: '3.0.1'
95

Akka's avatar
Akka committed
96
    implementation group:  'com.esotericsoftware', name : 'reflectasm', version: '1.11.9'
97
    implementation group:  'com.github.davidmoten', name : 'rtree-multi', version: '0.1'
Akka's avatar
Akka committed
98

99
    implementation group: 'io.javalin', name: 'javalin', version: '4.6.4'
100
    implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.3'
101

102
    protobuf files('proto/')
KingRainbow44's avatar
KingRainbow44 committed
103
104
105

    compileOnly 'org.projectlombok:lombok:1.18.24'
    annotationProcessor 'org.projectlombok:lombok:1.18.24'
AnimeGitB's avatar
AnimeGitB committed
106
107
    testCompileOnly 'org.projectlombok:lombok:1.18.24'
    testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
Melledy's avatar
Melledy committed
108
109
}

KingRainbow44's avatar
KingRainbow44 committed
110
111
112
113
configurations.all {
    exclude group: 'org.slf4j', module: 'slf4j'
}

Melledy's avatar
Melledy committed
114
115
application {
    // Define the main class for the application
116
    getMainClass().set('emu.grasscutter.Grasscutter')
Melledy's avatar
Melledy committed
117
118
119
}

jar {
120
121
    exclude '*.proto'

Melledy's avatar
Melledy committed
122
123
124
125
    manifest {
        attributes 'Main-Class': 'emu.grasscutter.Grasscutter'
    }

126
127
    archiveBaseName = 'grasscutter'
    if (project.hasProperty('jarFilename')) {
Simplxs's avatar
Simplxs committed
128
        archiveFileName = "${jarFilename}.${archiveExtension}"
129
    }
Melledy's avatar
Melledy committed
130
131

    from {
132
        configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
Melledy's avatar
Melledy committed
133
    }
KingRainbow44's avatar
KingRainbow44 committed
134

135
136
    duplicatesStrategy = DuplicatesStrategy.INCLUDE

Melledy's avatar
Melledy committed
137
    from('src/main/java') {
138
139
        include '*.xml'
    }
Melledy's avatar
Melledy committed
140

141
    destinationDirectory = file(".")
Melledy's avatar
Melledy committed
142
143
}

KingRainbow44's avatar
KingRainbow44 committed
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
publishing {
    publications {
        mavenJava(MavenPublication) {
            artifactId = 'grasscutter'
            from components.java
            versionMapping {
                usage('java-api') {
                    fromResolutionOf('runtimeClasspath')
                }
                usage('java-runtime') {
                    fromResolutionResult()
                }
            }
            pom {
                name = 'Grasscutter'
                description = 'A server software reimplementation for an anime game.'
                url = 'https://github.com/Grasscutters/Grasscutter'
                licenses {
                    license {
                        name = 'The Apache License, Version 2.0'
                        url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
                    }
                }
                developers {
                    developer {
169
170
                        id = 'meledy'
                        name = 'Meledy'
171
                        email = 'meledy@grasscutter.io' // not a real email kek
KingRainbow44's avatar
KingRainbow44 committed
172
173
174
175
176
177
178
179
180
181
182
183
                    }
                }
                scm {
                    connection = 'scm:git:git@github.com:Grasscutters/Grasscutter.git'
                    developerConnection = 'scm:git:ssh://github.com:Grasscutters/Grasscutter.git'
                    url = 'https://github.com/Grasscutters/Grasscutter'
                }
            }
        }
    }
    repositories {
        maven {
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
            if(version.endsWith('-dev')) {
                println ("Publishing to 4benj-maven")
                url 'https://repo.4benj.com/releases'
                name '4benj-maven'
                credentials {
                    username System.getenv('benj_maven_username')
                    password System.getenv('benj_maven_token')
                }
            } else {
                println ("Publishing to sonatype")
                def releasesRepoUrl = 'https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/'
                def snapshotsRepoUrl = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
                url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl

                name = 'sonatype'
                credentials(PasswordCredentials)
            }
KingRainbow44's avatar
KingRainbow44 committed
201
202
203
204
        }
    }
}

205
206
207
208
209
210
211
212
213
clean {
    delete protobuf.generatedFilesBaseDir
}

protobuf {
    protoc {
        // The artifact spec for the Protobuf Compiler
        artifact = 'com.google.protobuf:protoc:3.18.1'
    }
214

215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
    generatedFilesBaseDir = "$projectDir/src/generated/"
}

sourceSets {
    main {
        proto {
            // In addition to the default 'src/main/proto'
            srcDir 'src/generated'
        }
        java {
            srcDir 'src/java'
        }
    }
}

idea {
    module {
        // proto files and generated Java files are automatically added as
        // source dirs.
        // If you have additional sources, add them here:
        sourceDirs += file("/proto/");
    }
}

Melledy's avatar
Melledy committed
239
240
241
242
243
244
245
246
eclipse {
    classpath {
        file.whenMerged { cp ->
            cp.entries.add( new org.gradle.plugins.ide.eclipse.model.SourceFolder('src/generated/main/java', null) )
        }
    }
}

KingRainbow44's avatar
KingRainbow44 committed
247
signing {
248
249
250
    if(!version.endsWith('-dev')) {
        sign publishing.publications.mavenJava
    }
KingRainbow44's avatar
KingRainbow44 committed
251
252
253
}

javadoc {
krrr's avatar
krrr committed
254
    options.encoding = 'UTF-8'
KingRainbow44's avatar
KingRainbow44 committed
255
256
257
    if(JavaVersion.current().isJava9Compatible()) {
        options.addBooleanOption('html5', true)
    }
258
259
}

mingjun97's avatar
mingjun97 committed
260
task injectGitHash {
mingjun97's avatar
mingjun97 committed
261
262
263
    def gitCommitHash = {
        try {
            return 'git rev-parse --verify --short HEAD'.execute().text.trim()
264
        } catch (ignored) {
mingjun97's avatar
mingjun97 committed
265
            return "GIT_NOT_FOUND"
mingjun97's avatar
mingjun97 committed
266
267
        }
    }
268
269
270
271
272
273
274
275
276

    new File(projectDir, "src/main/java/emu/grasscutter/BuildConfig.java").text =
        """package emu.grasscutter;

public final class BuildConfig {
    public static final String VERSION = \"${version}\";
    public static final String GIT_HASH = \"${gitCommitHash()}\";
}"""

mingjun97's avatar
mingjun97 committed
277
278
}

279
280
processResources {
    dependsOn "generateProto"
281
}