forked from pronze/SBA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (47 loc) · 1.45 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
defaultTasks 'clean', 'screamCompile'
allprojects {
group = 'pronze.hypixelify'
version = '2.0.0-SNAPSHOT'
}
buildscript {
repositories {
maven { url = 'https://repo.screamingsandals.org/public' }
}
dependencies { classpath 'org.screamingsandals.gradle.builder:screaming-plugin-builder:1.0.30' }
}
subprojects {
apply plugin: 'java'
apply plugin: 'org.screamingsandals.gradle.builder'
repositories {
maven {
url = uri('https://repo.dmulloy2.net/nexus/repository/public/')
}
maven {
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url 'https://gitlab.hoznet.dev/api/v4/projects/13/packages/maven'
}
maven {
url = uri('https://repo.hoznet.dev/public')
}
maven {
url = uri('https://repo.extendedclip.com/content/repositories/placeholderapi/')
}
maven {
url = uri('https://papermc.io/repo/repository/maven-public/')
}
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
compileOnly paper("1.16.4")
compileOnly 'org.screamingsandals.bedwars:BedWars:0.3.0-SNAPSHOT'
compileOnly 'org.screamingsandals.bedwars:BedWars-API:0.3.0-SNAPSHOT'
}
shadowJar {
relocate 'cloud', 'pronze.hypixelify.lib.cloud'
}
sourceCompatibility = '11.0'
}