-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsettings.gradle
More file actions
22 lines (18 loc) · 586 Bytes
/
Copy pathsettings.gradle
File metadata and controls
22 lines (18 loc) · 586 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = 'https://maven.neoforged.net/releases' }
maven { url = 'https://maven.fabricmc.net' }
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}
gradle.lifecycle.beforeProject {
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
options.compilerArgs << "-Xmaxerrs" << "10000"
}
}
rootProject.name = 'RepurposedStructures'
include 'common', 'fabric', 'neoforge'