-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
24 lines (23 loc) · 740 Bytes
/
settings.gradle.kts
File metadata and controls
24 lines (23 loc) · 740 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven {
name = "Refined Architect"
url = uri("https://maven.creeperhost.net")
content {
includeGroupAndSubgroups("com.refinedmods.refinedarchitect")
}
}
maven {
name = "Fabric"
url = uri("https://maven.fabricmc.net/")
}
}
val refinedarchitectVersion: String by settings
plugins {
id("com.refinedmods.refinedarchitect.root").version(refinedarchitectVersion)
id("com.refinedmods.refinedarchitect.fabric").version(refinedarchitectVersion)
}
}
rootProject.name = "refinedstorage-trinkets-integration"