-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle
More file actions
48 lines (40 loc) · 1.22 KB
/
settings.gradle
File metadata and controls
48 lines (40 loc) · 1.22 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
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = 'https://maven.neoforged.net/releases' }
maven {
url = "https://maven.fabricmc.net/"
}
}
}
plugins {
id 'net.neoforged.moddev.repositories' version "${moddevgradle_plugin_version}"
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}
// This makes the version available to buildSrc
gradle.ext.moddevgradle_plugin_version = moddevgradle_plugin_version
gradle.ext.gson_version = gson_version
gradle.ext.diffpatch_version = diffpatch_version
rootProject.name = rootDir.name
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
rulesMode = RulesMode.FAIL_ON_PROJECT_RULES
repositories {
mavenCentral()
maven {
url 'https://repo.sleeping.town'
content {
includeGroup 'com.unascribed'
}
}
maven {
url = "https://maven.fabricmc.net/"
}
}
}
include ':base'
project(":base").projectDir = file("projects/base")
include ':mcbig'
project(":mcbig").projectDir = file("projects/mcbig")
//include ':tests'
//project(":tests").projectDir = file("tests")