-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
41 lines (39 loc) · 1.62 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
allprojects {
group = 'org.spazzinq'
version = '5.0.2-BETA'
}
subprojects {
apply plugin: 'java'
apply plugin: 'maven-publish'
repositories {
mavenCentral()
// Spigot
maven { url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
// Bungeecord
maven { url = 'https://oss.sonatype.org/content/repositories/snapshots/' }
// bStats, Bentobox
maven { url = 'https://repo.codemc.org/repository/maven-public/' }
// WorldEdit, WorldGuard
maven { url = 'https://maven.enginehub.org/repo/' }
// FactionsUUID
maven { url = 'https://ci.ender.zone/plugin/repository/everything/' }
// EssentialsX
maven { url = 'https://repo.essentialsx.net/releases/' }
// PaperSpigot, PlotSquared
maven { url = 'https://repo.papermc.io/repository/maven-public/' }
// CrazyEnchantments
maven { url = 'https://repo.crazycrew.us/releases' }
// Lands, PvPManager, GriefPrevention, GriefDefender, HuskTowns, SaberFactions, DeluxeCombat, CombatLogger
maven { url = 'https://jitpack.io' }
// PlaceholderAPI
maven { url = 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
// GriefDefender
maven { url = 'https://repo.glaremasters.me/repository/bloodshot/' }
// CombatLogX, BlobCore
maven { url = 'https://nexus.sirblobman.xyz/public/' }
// SuperiorSkyblock2
maven { url = 'https://repo.bg-software.com/repository/api/' }
// Towny
maven { url = 'https://repo.glaremasters.me/repository/towny/' }
}
}