build.gradle 1.85 KB
Newer Older
Melledy's avatar
Melledy committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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
 */

plugins {
    // Apply the java plugin to add support for Java
    id 'java'

    // Apply the application plugin to add support for building a CLI application
    id 'application'
}

17
18
sourceCompatibility = 16
targetCompatibility = 16
Melledy's avatar
Melledy committed
19
20
21
22
23
24

repositories {
    mavenCentral()
}

dependencies {
25
    implementation fileTree(dir: 'lib', include: ['*.jar'])
KingRainbow44's avatar
KingRainbow44 committed
26
    
27
	implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'
雪碧's avatar
雪碧 committed
28
29
30
	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'
Melledy's avatar
Melledy committed
31
    
32
	implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.8'
雪碧's avatar
雪碧 committed
33
	implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.18.2'
Melledy's avatar
Melledy committed
34
	
KingRainbow44's avatar
KingRainbow44 committed
35
	implementation group: 'org.reflections', name: 'reflections', version: '0.10.2'
Melledy's avatar
Melledy committed
36

KingRainbow44's avatar
KingRainbow44 committed
37
	implementation group: 'dev.morphia.morphia', name: 'morphia-core', version: '2.2.6'
38
39

    implementation group: 'org.greenrobot', name: 'eventbus-java', version: '3.3.1'
Melledy's avatar
Melledy committed
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
}

application {
    // Define the main class for the application
    mainClassName = 'emu.grasscutter.Grasscutter'
}

jar {
    manifest {
        attributes 'Main-Class': 'emu.grasscutter.Grasscutter'
    }

    jar.baseName = 'grasscutter'

    from {
55
        configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
Melledy's avatar
Melledy committed
56
57
    }
    
58
59
    duplicatesStrategy = DuplicatesStrategy.INCLUDE

Melledy's avatar
Melledy committed
60
61
62
63
64
65
66
    from('src/main/java') {
		include '*.xml'
	}

    destinationDir = file(".")
}