-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (51 loc) · 1.74 KB
/
build.gradle
File metadata and controls
61 lines (51 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
59
60
61
plugins {
id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "1.13-SNAPSHOT" apply false
}
architectury {
minecraft = project.minecraft_version
}
def platforms = subprojects.name.clone()
platforms.remove("common")
project.ext.set("platforms", platforms)
subprojects {
apply plugin: "dev.architectury.loom"
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://maven.parchmentmc.org" }
maven { url "https://maven.shedaniel.me/" }
maven { url "https://maven.neoforged.net/releases" }
maven { url "https://maven.isxander.dev/releases" }
maven { url "https://maven.terraformersmc.com/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings loom.layered() {
officialMojangMappings()
}
}
}
allprojects {
apply plugin: "java"
apply plugin: "architectury-plugin"
apply plugin: "maven-publish"
archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group
repositories {
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.release = 21
}
}
build {
dependsOn subprojects.build
}