build.gradle 1.65 KB
Newer Older
Melledy's avatar
Melledy committed
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
/*
 * 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'
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
    mavenCentral()
    jcenter()
}

dependencies {
    compile fileTree(dir: 'lib', include: '*.jar')

	compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'
	compile group: 'ch.qos.logback', name: 'logback-core', version: '1.2.6'
    compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.6'
    compile group: 'io.netty', name: 'netty-all', version: '4.1.69.Final'
    
	compile group: 'com.google.code.gson', name: 'gson', version: '2.8.8'
	compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.18.1'
	
	compile group: 'org.reflections', name: 'reflections', version: '0.9.12'

	compile group: 'dev.morphia.morphia', name: 'core', version: '1.6.1'
}

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

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

    jar.baseName = 'grasscutter'

    from {
        configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
    }
    
    from('src/main/java') {
		include '*.xml'
	}

    destinationDir = file(".")
}