forked from LambdAurora/LambDynamicLights
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
79 lines (65 loc) · 2.5 KB
/
build.gradle
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
plugins {
id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "1.7-SNAPSHOT" apply false
id "com.github.johnrengelman.shadow" version "8.+" apply false
id "com.hypherionmc.modutils.modpublisher" version "2.+" apply false
}
architectury {
minecraft = rootProject.minecraft_version
}
allprojects {
version = "${rootProject.mod_version}+mc${rootProject.minecraft_version}"
group = rootProject.maven_group
}
subprojects {
apply plugin: "java"
apply plugin: "maven-publish"
apply plugin: "architectury-plugin"
apply plugin: "dev.architectury.loom"
apply plugin: "com.github.johnrengelman.shadow"
apply plugin: "com.hypherionmc.modutils.modpublisher"
archivesBaseName = "${rootProject.archives_base_name}-${project.name}"
repositories {
maven { url = "https://maven.gegy.dev" }
maven { url = "https://api.modrinth.com/maven" }
maven { url = "https://maven.quiltmc.org/repository/release" }
maven { url = "https://maven.terraformersmc.com/releases/" }
}
dependencies {
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
mappings loom.layered {
mappings "net.fabricmc:yarn:${rootProject.yarn_mappings}:v2"
mappings "dev.architectury:yarn-mappings-patch-neoforge:${rootProject.mappings_patch}"
}
implementation("com.electronwill.night-config:core:3.8.0")
implementation("com.electronwill.night-config:toml:3.8.0")
}
tasks.withType(JavaCompile).configureEach {
options.encoding = "UTF-8"
options.release = 21
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
withSourcesJar()
}
// Configure Maven publishing.
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = base.archivesName.get()
from components.java
}
}
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}
}