-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
33 lines (29 loc) · 903 Bytes
/
settings.gradle.kts
File metadata and controls
33 lines (29 loc) · 903 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
plugins {
id("com.gradleup.nmcp.settings") version "1.4.4"
}
rootProject.name = "pluginbase"
nmcpSettings {
centralPortal {
username = providers.gradleProperty("centralPortalUsername")
password = providers.gradleProperty("centralPortalPassword")
publishingType = "AUTOMATIC"
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven("https://jitpack.io")
maven("https://repo.codemc.org/repository/maven-public")
maven("https://libraries.minecraft.net/")
}
}
include(
"pluginbase-core",
"pluginbase-sql",
"pluginbase-mongo",
"pluginbase-games",
"pluginbase-redis"
)