forked from GT-IMPACT/impactRecipesModule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
56 lines (50 loc) · 1.61 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
51
52
53
54
55
56
@file:Suppress("UnstableApiUsage")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("remote-build-logic")
repositories {
maven("https://maven.accident.space/repository/maven-public/") {
mavenContent {
includeGroup("space.impact")
includeGroupByRegex("space\\.impact\\..+")
}
}
maven("https://nexus.gtnewhorizons.com/repository/public/") {
mavenContent {
includeGroup("com.gtnewhorizons")
includeGroupByRegex("com\\.gtnewhorizons\\..+")
}
}
maven("https://maven.minecraftforge.net")
maven("https://plugins.gradle.org/m2/")
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
maven("https://maven.accident.space/repository/maven-public/") {
mavenContent {
includeGroup("space.impact")
includeGroupByRegex("space\\.impact\\..+")
}
}
maven("https://nexus.gtnewhorizons.com/repository/public/") {
mavenContent {
includeGroup("com.gtnewhorizons")
includeGroupByRegex("com\\.gtnewhorizons\\..+")
}
}
maven("https://maven.minecraftforge.net")
maven("https://plugins.gradle.org/m2/")
mavenCentral()
}
versionCatalogs {
create("libs") {
from(files("remote-build-logic/libs.versions.toml"))
}
}
}
plugins {
id("com.gtnewhorizons.gtnhsettingsconvention") version "1.0.32"
}
rootProject.name = "RecipeModule"