build.gradle 6.09 KB
Newer Older
Melledy's avatar
Melledy committed
1
2
3
4
5
6
7
8
/*
 * 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
 */

9
10
11
12
13
14
15
16
17
buildscript {
    repositories {
        maven { url "https://plugins.gradle.org/m2/" }
    }
    dependencies {
        classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.18'
    }
}

Melledy's avatar
Melledy committed
18
plugins {
19
20
21
    // Apply the application plugin to add support for building a CLI application
    id 'application'

Melledy's avatar
Melledy committed
22
23
24
    // Apply the java plugin to add support for Java
    id 'java'

25
26
27
    // Apply the protobuf auto generator
    id 'com.google.protobuf' version "0.8.18"

28
    // Eclipse Support
Melledy's avatar
Melledy committed
29
30
    id 'eclipse'

31
32
    // Intelij Support
    id 'idea'
KingRainbow44's avatar
KingRainbow44 committed
33

34
    // Maven
KingRainbow44's avatar
KingRainbow44 committed
35
36
    id 'maven-publish'
    id 'signing'
Melledy's avatar
Melledy committed
37
38
}

39
40
41
42

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

43
group = 'xyz.grasscutters'
KingRainbow44's avatar
KingRainbow44 committed
44
version = '1.0.3-dev'
KingRainbow44's avatar
KingRainbow44 committed
45

真心's avatar
真心 committed
46
47
sourceCompatibility = 17
targetCompatibility = 17
Melledy's avatar
Melledy committed
48

KingRainbow44's avatar
KingRainbow44 committed
49
50
51
52
53
java {
    withJavadocJar()
    withSourcesJar()
}

Melledy's avatar
Melledy committed
54
55
56
57
58
repositories {
    mavenCentral()
}

dependencies {
59
    implementation fileTree(dir: 'lib', include: ['*.jar'])
60

61
	implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'
雪碧's avatar
雪碧 committed
62
63
	implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.2.9'
    implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.9'
KingRainbow44's avatar
KingRainbow44 committed
64
    
雪碧's avatar
雪碧 committed
65
    implementation group: 'io.netty', name: 'netty-all', version: '4.1.71.Final'
Melledy's avatar
Melledy committed
66
    
67
	implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.8'
雪碧's avatar
雪碧 committed
68
	implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.18.2'
Melledy's avatar
Melledy committed
69
	
KingRainbow44's avatar
KingRainbow44 committed
70
	implementation group: 'org.reflections', name: 'reflections', version: '0.10.2'
Melledy's avatar
Melledy committed
71

KingRainbow44's avatar
KingRainbow44 committed
72
	implementation group: 'dev.morphia.morphia', name: 'morphia-core', version: '2.2.6'
73
74

    implementation group: 'org.greenrobot', name: 'eventbus-java', version: '3.3.1'
Melledy's avatar
Melledy committed
75
    implementation group: 'org.danilopianini', name: 'java-quadtree', version: '0.1.9'
76

Yazawazi's avatar
Yazawazi committed
77
78
    implementation group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.2'
    implementation group: 'org.quartz-scheduler', name: 'quartz-jobs', version: '2.3.2'
79
80
81
    
    implementation group: 'org.luaj', name: 'luaj-jse', version: '3.0.1'
    
82
    protobuf files('proto/')
Melledy's avatar
Melledy committed
83
84
}

KingRainbow44's avatar
KingRainbow44 committed
85
86
87
88
configurations.all {
    exclude group: 'org.slf4j', module: 'slf4j'
}

Melledy's avatar
Melledy committed
89
90
91
92
93
94
95
96
97
98
99
100
101
application {
    // Define the main class for the application
    mainClassName = 'emu.grasscutter.Grasscutter'
}

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

    jar.baseName = 'grasscutter'

    from {
102
        configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
Melledy's avatar
Melledy committed
103
104
    }
    
105
106
    duplicatesStrategy = DuplicatesStrategy.INCLUDE

Melledy's avatar
Melledy committed
107
108
109
110
111
112
113
    from('src/main/java') {
		include '*.xml'
	}

    destinationDir = file(".")
}

KingRainbow44's avatar
KingRainbow44 committed
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
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 {
139
140
141
                        id = 'meledy'
                        name = 'Meledy'
                        email = 'meledy@xigam.tech' // not a real email kek
KingRainbow44's avatar
KingRainbow44 committed
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
                    }
                    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
163

KingRainbow44's avatar
KingRainbow44 committed
164
165
166
167
168
169
            name = 'sonatype'
            credentials(PasswordCredentials)
        }
    }
}

170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
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/");
    }
}

Melledy's avatar
Melledy committed
204
205
206
207
208
209
210
211
eclipse {
    classpath {
        file.whenMerged { cp ->
            cp.entries.add( new org.gradle.plugins.ide.eclipse.model.SourceFolder('src/generated/main/java', null) )
        }
    }
}

KingRainbow44's avatar
KingRainbow44 committed
212
213
214
215
216
217
218
219
signing {
    sign publishing.publications.mavenJava
}

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

processResources {
    dependsOn "generateProto"
KingRainbow44's avatar
KingRainbow44 committed
224
}