-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (47 loc) · 1.35 KB
/
build.gradle
File metadata and controls
48 lines (47 loc) · 1.35 KB
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
plugins {
id 'fabric-loom' version '1.9-SNAPSHOT' apply(false)
id 'net.neoforged.moddev.legacyforge' version '2.0.77' apply(false)
}
subprojects {
repositories {
mavenCentral()
exclusiveContent {
forRepository {
maven {
name "Architectury Mavenn"
url "https://maven.architectury.dev/"
}
}
filter { includeGroupAndSubgroups('dev.architectury') }
}
exclusiveContent {
forRepository {
maven {
name "KubeJS Maven"
url "https://maven.latvian.dev/releases"
content {
}
}
}
filter {
includeGroup "dev.latvian.mods"
includeGroup "dev.latvian.apps"
}
}
maven {
name = "Fuzs Mod Resources (Forge Config API Port)"
url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/"
}
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
}