-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle
More file actions
32 lines (30 loc) · 858 Bytes
/
Copy pathsettings.gradle
File metadata and controls
32 lines (30 loc) · 858 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
mavenLocal()
exclusiveContent {
forRepository {
maven {
name = 'Fabric'
url = uri('https://maven.fabricmc.net')
}
}
filter {
includeGroupAndSubgroups('net.fabricmc')
}
}
maven {
name = 'Muon'
url = uri('https://maven.muon.rip/releases')
}
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
}
// This should match the folder name of the project, or else IDEA may complain (see https://youtrack.jetbrains.com/issue/IDEA-317606)
rootProject.name = 'Dynamic-Resource-Bars'
include('common')
include('fabric')
include('neoforge')