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

    id 'maven-publish'
    id 'signing'
Melledy's avatar
Melledy committed
18
19
}

KingRainbow44's avatar
KingRainbow44 committed
20
21
22
group = 'tech.xigam'
version = '1.0.0-dev'

真心's avatar
真心 committed
23
24
sourceCompatibility = 17
targetCompatibility = 17
Melledy's avatar
Melledy committed
25

KingRainbow44's avatar
KingRainbow44 committed
26
27
28
29
30
java {
    withJavadocJar()
    withSourcesJar()
}

Melledy's avatar
Melledy committed
31
32
33
34
35
repositories {
    mavenCentral()
}

dependencies {
36
    implementation fileTree(dir: 'lib', include: ['*.jar'])
KingRainbow44's avatar
KingRainbow44 committed
37
    
38
	implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'
雪碧's avatar
雪碧 committed
39
40
41
	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
42
    
43
	implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.8'
雪碧's avatar
雪碧 committed
44
	implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.18.2'
Melledy's avatar
Melledy committed
45
	
KingRainbow44's avatar
KingRainbow44 committed
46
	implementation group: 'org.reflections', name: 'reflections', version: '0.10.2'
Melledy's avatar
Melledy committed
47

KingRainbow44's avatar
KingRainbow44 committed
48
	implementation group: 'dev.morphia.morphia', name: 'morphia-core', version: '2.2.6'
49
50

    implementation group: 'org.greenrobot', name: 'eventbus-java', version: '3.3.1'
Melledy's avatar
Melledy committed
51
    implementation group: 'org.danilopianini', name: 'java-quadtree', version: '0.1.9'
Melledy's avatar
Melledy committed
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
}

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

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

    jar.baseName = 'grasscutter'

    from {
67
        configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
Melledy's avatar
Melledy committed
68
69
    }
    
70
71
    duplicatesStrategy = DuplicatesStrategy.INCLUDE

Melledy's avatar
Melledy committed
72
73
74
75
76
77
78
    from('src/main/java') {
		include '*.xml'
	}

    destinationDir = file(".")
}

KingRainbow44's avatar
KingRainbow44 committed
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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
            
            name = 'sonatype'
            credentials(PasswordCredentials)
        }
    }
}

signing {
    sign publishing.publications.mavenJava
}

javadoc {
    if(JavaVersion.current().isJava9Compatible()) {
        options.addBooleanOption('html5', true)
    }
}