-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (38 loc) · 1.03 KB
/
build.gradle
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
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
allprojects {
apply plugin: 'java'
repositories {
maven { url 'https://repo.opencollab.dev/maven-snapshots' }
mavenCentral()
}
dependencies {
compileOnly ('org.geysermc:core:2.0.3-SNAPSHOT') {
exclude group: 'com.nukkitx'
exclude group: 'com.nukkitx.fastutil'
exclude group: 'com.github.CloudburstMC.Protocol'
exclude group: 'com.github.GeyserMC', module: 'MCAuthLib'
exclude group: 'com.github.GeyserMC', module: 'MCProtocolLib'
}
compileOnly 'org.jetbrains:annotations:23.0.0'
}
compileJava {
options.encoding = 'UTF-8'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
dependencies {
implementation project(':bungee')
implementation project(':velocity')
}
jar {
enabled = false
dependsOn (shadowJar)
}
shadowJar {
archiveClassifier.set('')
}