203 lines
5.6 KiB
Groovy
203 lines
5.6 KiB
Groovy
/*
|
|
* 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
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
}
|
|
dependencies {
|
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.18'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
// Apply the application plugin to add support for building a CLI application
|
|
id 'application'
|
|
|
|
// Apply the java plugin to add support for Java
|
|
id 'java'
|
|
|
|
// Apply the protobuf auto generator
|
|
id 'com.google.protobuf' version "0.8.18"
|
|
|
|
// IntelliJ Support
|
|
id 'idea'
|
|
|
|
id 'signing'
|
|
}
|
|
|
|
compileJava.options.encoding = "UTF-8"
|
|
compileTestJava.options.encoding = "UTF-8"
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
|
|
group = 'xyz.grasscutters'
|
|
version = '1.4.4-dev'
|
|
|
|
sourceCompatibility = 17
|
|
targetCompatibility = 17
|
|
|
|
java {
|
|
withSourcesJar()
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'lib', include: ['*.jar'])
|
|
|
|
implementation group: 'it.unimi.dsi', name: 'fastutil', version: '8.5.8'
|
|
|
|
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'
|
|
|
|
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'
|
|
|
|
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'
|
|
|
|
implementation group: 'com.google.code.gson', name: 'gson', version: '2.9.0'
|
|
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.18.2'
|
|
|
|
implementation group: 'org.reflections', name: 'reflections', version: '0.10.2'
|
|
|
|
implementation group: 'dev.morphia.morphia', name: 'morphia-core', version: '2.2.7'
|
|
|
|
implementation group: 'org.greenrobot', name: 'eventbus-java', version: '3.3.1'
|
|
//implementation group: 'org.danilopianini', name: 'java-quadtree', version: '0.1.9'
|
|
|
|
implementation group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.2'
|
|
implementation group: 'org.quartz-scheduler', name: 'quartz-jobs', version: '2.3.2'
|
|
|
|
implementation group: 'org.luaj', name: 'luaj-jse', version: '3.0.1'
|
|
|
|
implementation group: 'com.esotericsoftware', name : 'reflectasm', version: '1.11.9'
|
|
implementation group: 'com.github.davidmoten', name : 'rtree-multi', version: '0.1'
|
|
|
|
implementation group: 'io.javalin', name: 'javalin', version: '4.6.4'
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.3'
|
|
|
|
protobuf files('proto/')
|
|
|
|
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'
|
|
}
|
|
|
|
configurations.all {
|
|
exclude group: 'org.slf4j', module: 'slf4j'
|
|
}
|
|
|
|
application {
|
|
// Define the main class for the application
|
|
getMainClass().set('emu.grasscutter.Grasscutter')
|
|
}
|
|
|
|
|
|
jar {
|
|
exclude '*.proto'
|
|
|
|
manifest {
|
|
attributes 'Main-Class': 'emu.grasscutter.Grasscutter'
|
|
}
|
|
|
|
archiveBaseName = 'grasscutter'
|
|
if (project.hasProperty('jarFilename')) {
|
|
archiveFileName = "${jarFilename}.${extension}"
|
|
}
|
|
|
|
from {
|
|
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
|
|
|
from('src/main/java') {
|
|
include '*.xml'
|
|
}
|
|
|
|
destinationDirectory = file(".")
|
|
}
|
|
|
|
|
|
|
|
clean {
|
|
delete protobuf.generatedFilesBaseDir
|
|
}
|
|
|
|
protobuf {
|
|
protoc {
|
|
// The artifact spec for the Protobuf Compiler
|
|
artifact = 'com.google.protobuf:protoc:3.18.1'
|
|
}
|
|
// generatedFilesBaseDir = "$projectDir/src/main/java/emu/grasscutter/net/proto/"
|
|
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/");
|
|
}
|
|
}
|
|
|
|
|
|
signing {
|
|
if(!version.endsWith('-dev')) {
|
|
sign publishing.publications.mavenJava
|
|
}
|
|
}
|
|
|
|
|
|
|
|
task injectGitHash {
|
|
def gitCommitHash = {
|
|
try {
|
|
return 'git rev-parse --verify --short HEAD'.execute().text.trim()
|
|
} catch (ignored) {
|
|
return "GIT_NOT_FOUND"
|
|
}
|
|
}
|
|
|
|
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()}\";
|
|
}"""
|
|
|
|
}
|
|
|
|
processResources {
|
|
dependsOn "generateProto"
|
|
}
|