forked from utarwyn/EnderContainers
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle
More file actions
36 lines (29 loc) · 866 Bytes
/
settings.gradle
File metadata and controls
36 lines (29 loc) · 866 Bytes
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
pluginManagement {
repositories {
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url 'https://hub.spigotmc.org/nexus/content/groups/public/' }
maven { url 'https://repo.utarwyn.fr'
allowInsecureProtocol = true
}
maven { url 'https://ci.ender.zone/plugin/repository/everything/' }
maven { url 'https://maven.enginehub.org/repo/' }
flatDir {
dirs 'libs'
}
}
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
}
rootProject.name = 'EnderContainers'
include 'api'
include 'dependencies:factions1'
include 'dependencies:factions2'
include 'dependencies:factionsuuid'
include 'dependencies:plotsquared'
include 'dependencies:worldguard6'
include 'dependencies:worldguard7'
include 'plugin'