forked from jpenilla/better-fabric-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
33 lines (29 loc) · 875 Bytes
/
settings.gradle.kts
File metadata and controls
33 lines (29 loc) · 875 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
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://repo.jpenilla.xyz/snapshots/") {
mavenContent {
snapshotsOnly()
includeGroup("xyz.jpenilla")
}
}
maven("https://central.sonatype.com/repository/maven-snapshots/") {
mavenContent { snapshotsOnly() }
}
maven("https://maven.fabricmc.net/")
}
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
}
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://maven.fabricmc.net/")
maven("https://repo.jpenilla.xyz/snapshots/")
}
}
plugins {
id("xyz.jpenilla.quiet-fabric-loom") version "1.15-SNAPSHOT" apply false
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
plugins.apply(net.fabricmc.loom.LoomRepositoryPlugin::class.java)
rootProject.name = "better-fabric-console"