forked from utarwyn/EnderContainers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
37 lines (32 loc) · 970 Bytes
/
settings.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
pluginManagement {
repositories {
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url 'https://hub.spigotmc.org/nexus/content/groups/public/' }
maven { url 'https://repo.utarwyn.fr' }
maven { url 'https://ci.ender.zone/plugin/repository/everything/' }
maven { url 'https://maven.enginehub.org/repo/' }
}
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
}
buildscript {
repositories {
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:4.0.0.2929'
}
}
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'