forked from pitsim-network/PitSimBungee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (36 loc) · 1.22 KB
/
Copy pathbuild.gradle
File metadata and controls
42 lines (36 loc) · 1.22 KB
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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
group 'net.pitsim'
version ''
project.sourceCompatibility = '1.8'
project.targetCompatibility = '1.8'
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://repo.mattmalec.com/repository/releases" }
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly 'com.mattmalec:Pterodactyl4J:2.BETA_81'
compileOnly 'com.github.Mokulu:discord-oauth2-api:1.0.2'
compileOnly 'net.md-5:bungeecord-api:1.8-SNAPSHOT'
compileOnly 'com.google.firebase:firebase-admin:8.0.0'
compileOnly 'net.luckperms:api:5.4'
compileOnly group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.29'
compileOnly ('net.dv8tion:JDA:5.0.0-alpha.12') {
exclude module: 'opus-java'
}
compileOnly files('libs/PitSimBungeeDependencies-1-all.jar')
}
shadowJar {
relocate 'dev.kyro.arcticapi', 'dev.kyro.pitsim.arcticapi'
relocate 'net.kyori', 'dev.kyro.pitsim.kyori'
relocate 'com.squareup.okhttp3', 'dev.pitsim.libs.okhhtp'
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xmaxerrs' << '1000'
}
}