-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
50 lines (49 loc) · 2.02 KB
/
settings.gradle.kts
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
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://papermc.io/repo/repository/maven-public/")
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://nexus.scarsz.me/content/groups/public/")
maven("https://repo.dmulloy2.net/repository/public/")
maven("https://oss.sonatype.org/content/groups/public/")
maven("https://repo.essentialsx.net/snapshots/")
maven("https://repo.maven.apache.org/maven2/")
maven("https://maven.enginehub.org/repo/")
maven("https://repo1.maven.org/maven2/")
maven("https://maven.playpro.com")
maven("https://jitpack.io")
}
}
dependencyResolutionManagement {
repositories {
mavenLocal()
mavenCentral()
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://papermc.io/repo/repository/maven-public/")
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://nexus.scarsz.me/content/groups/public/")
maven("https://repo.dmulloy2.net/repository/public/")
maven("https://oss.sonatype.org/content/groups/public/")
maven("https://repo.essentialsx.net/snapshots/")
maven("https://repo.essentialsx.net/releases/")
maven("https://repo.maven.apache.org/maven2/")
maven("https://maven.enginehub.org/repo/")
maven("https://repo1.maven.org/maven2/")
maven("https://maven.playpro.com")
maven("https://jitpack.io")
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "AstraLibs"
include(":core")
include(":core-bukkit")
include(":menu-bukkit")
include(":command")
include(":command-bukkit")
include(":benchmarks")
include(":exposed")