2022-04-17 12:43:07 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2022-04-26 21:44:30 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.18'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
plugins {
|
|
|
|
// Apply the java plugin to add support for Java
|
|
|
|
id 'java'
|
|
|
|
|
2022-04-26 21:44:30 +00:00
|
|
|
// Apply the protobuf auto generator
|
|
|
|
id 'com.google.protobuf' version "0.8.18"
|
|
|
|
id 'idea'
|
|
|
|
|
2022-04-27 01:59:26 +00:00
|
|
|
id 'eclipse'
|
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
// Apply the application plugin to add support for building a CLI application
|
|
|
|
id 'application'
|
2022-04-26 15:13:25 +00:00
|
|
|
|
|
|
|
id 'maven-publish'
|
|
|
|
id 'signing'
|
2022-04-17 12:43:07 +00:00
|
|
|
}
|
|
|
|
|
2022-04-26 21:44:30 +00:00
|
|
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
|
|
|
2022-04-26 15:13:25 +00:00
|
|
|
group = 'tech.xigam'
|
|
|
|
version = '1.0.0-dev'
|
|
|
|
|
2022-04-25 08:55:21 +00:00
|
|
|
sourceCompatibility = 17
|
|
|
|
targetCompatibility = 17
|
2022-04-17 12:43:07 +00:00
|
|
|
|
2022-04-26 15:13:25 +00:00
|
|
|
java {
|
|
|
|
withJavadocJar()
|
|
|
|
withSourcesJar()
|
|
|
|
}
|
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-04-20 08:05:53 +00:00
|
|
|
implementation fileTree(dir: 'lib', include: ['*.jar'])
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-04-20 08:05:53 +00:00
|
|
|
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'
|
2022-04-24 13:32:48 +00:00
|
|
|
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.2.9'
|
|
|
|
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.9'
|
|
|
|
implementation group: 'io.netty', name: 'netty-all', version: '4.1.71.Final'
|
2022-04-17 12:43:07 +00:00
|
|
|
|
2022-04-20 08:05:53 +00:00
|
|
|
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.8'
|
2022-04-24 13:32:48 +00:00
|
|
|
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.18.2'
|
2022-04-17 12:43:07 +00:00
|
|
|
|
2022-04-21 01:11:57 +00:00
|
|
|
implementation group: 'org.reflections', name: 'reflections', version: '0.10.2'
|
2022-04-17 12:43:07 +00:00
|
|
|
|
2022-04-21 01:11:57 +00:00
|
|
|
implementation group: 'dev.morphia.morphia', name: 'morphia-core', version: '2.2.6'
|
2022-04-20 08:05:53 +00:00
|
|
|
|
|
|
|
implementation group: 'org.greenrobot', name: 'eventbus-java', version: '3.3.1'
|
2022-04-25 08:50:58 +00:00
|
|
|
implementation group: 'org.danilopianini', name: 'java-quadtree', version: '0.1.9'
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-04-26 22:04:21 +00:00
|
|
|
implementation group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.2'
|
|
|
|
implementation group: 'org.quartz-scheduler', name: 'quartz-jobs', version: '2.3.2'
|
|
|
|
|
2022-04-26 21:44:30 +00:00
|
|
|
protobuf files('proto/')
|
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
// Define the main class for the application
|
|
|
|
mainClassName = 'emu.grasscutter.Grasscutter'
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes 'Main-Class': 'emu.grasscutter.Grasscutter'
|
|
|
|
}
|
|
|
|
|
|
|
|
jar.baseName = 'grasscutter'
|
|
|
|
|
|
|
|
from {
|
2022-04-20 08:05:53 +00:00
|
|
|
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
2022-04-17 12:43:07 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 08:05:53 +00:00
|
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
|
|
|
|
2022-04-17 12:43:07 +00:00
|
|
|
from('src/main/java') {
|
|
|
|
include '*.xml'
|
|
|
|
}
|
|
|
|
|
|
|
|
destinationDir = file(".")
|
|
|
|
}
|
|
|
|
|
2022-04-26 15:13:25 +00:00
|
|
|
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 {
|
|
|
|
id = 'melledy'
|
|
|
|
name = 'Melledy'
|
|
|
|
email = 'melledy@xigam.tech' // not a real email kek
|
|
|
|
}
|
|
|
|
developer {
|
|
|
|
id = 'magix'
|
|
|
|
name = 'Magix'
|
|
|
|
email = 'magix@xigam.tech'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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 {
|
|
|
|
// change URLs to point to your repos, e.g. http://my.org/repo
|
|
|
|
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
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-04-26 15:13:25 +00:00
|
|
|
name = 'sonatype'
|
|
|
|
credentials(PasswordCredentials)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-26 21:44:30 +00:00
|
|
|
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/");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-27 01:59:26 +00:00
|
|
|
eclipse {
|
|
|
|
classpath {
|
|
|
|
file.whenMerged { cp ->
|
|
|
|
cp.entries.add( new org.gradle.plugins.ide.eclipse.model.SourceFolder('src/generated/main/java', null) )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-26 15:13:25 +00:00
|
|
|
signing {
|
|
|
|
sign publishing.publications.mavenJava
|
|
|
|
}
|
|
|
|
|
|
|
|
javadoc {
|
|
|
|
if(JavaVersion.current().isJava9Compatible()) {
|
|
|
|
options.addBooleanOption('html5', true)
|
|
|
|
}
|
2022-04-27 00:36:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
dependsOn "generateProto"
|
2022-04-26 15:13:25 +00:00
|
|
|
}
|