-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsettings.gradle
32 lines (30 loc) · 1.01 KB
/
settings.gradle
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
gradle.ext.refinedArchitectVersion = "0.15.2"
dependencyResolutionManagement {
repositories {
maven {
url = "https://maven.pkg.github.com/refinedmods/refinedarchitect"
credentials {
username = "anything"
password = "\u0067hp_oGjcDFCn8jeTzIj4Ke9pLoEVtpnZMP4VQgaX"
}
}
}
versionCatalogs {
create("libs") {
from("com.refinedmods.refinedarchitect:refinedarchitect-catalog:${gradle.ext.refinedArchitectVersion}")
}
}
}
rootProject.name = 'refinedstorage'
include 'refinedstorage-core-api'
include 'refinedstorage-resource-api'
include 'refinedstorage-storage-api'
include 'refinedstorage-query-parser'
include 'refinedstorage-grid-api'
include 'refinedstorage-network-api'
include 'refinedstorage-network'
include 'refinedstorage-platform-api'
include 'refinedstorage-platform-fabric'
include 'refinedstorage-platform-neoforge'
include 'refinedstorage-platform-common'
include 'refinedstorage-network-test'