-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.gradle.kts
40 lines (33 loc) · 1.1 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
rootProject.name = "squaremarker"
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://maven.fabricmc.net/")
maven("https://maven.architectury.dev/")
maven("https://repo.jpenilla.xyz/snapshots/")
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") {
mavenContent { snapshotsOnly() }
}
}
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
}
plugins {
id("xyz.jpenilla.quiet-architectury-loom") version "1.7-SNAPSHOT"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
include("common")
project(":common").name = "squaremarker-common"
include("fabric")
project(":fabric").name = "squaremarker-fabric"
include("neoforge")
project(":neoforge").name = "squaremarker-neoforge"
include("paper")
project(":paper").name = "squaremarker-paper"