-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbuild.gradle
More file actions
97 lines (80 loc) · 2.9 KB
/
build.gradle
File metadata and controls
97 lines (80 loc) · 2.9 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
plugins {
id "co.uzzu.dotenv.gradle" version "2.0.0"
id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "0.12.0-SNAPSHOT" apply false
id "com.matthewprenger.cursegradle" version "1.4.0" apply false
id "com.modrinth.minotaur" version "2.+" apply false
}
architectury {
minecraft = rootProject.minecraft_version
}
subprojects {
apply plugin: "dev.architectury.loom"
loom {
silentMojangMappingsLicense()
}
dependencies {
compileOnly "org.projectlombok:lombok:${project.version_lombok}"
annotationProcessor "org.projectlombok:lombok:${project.version_lombok}"
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
mappings loom.layered() {
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-1.18.2:2022.06.26@zip")
}
implementation "com.google.code.gson:gson:${project.version_gson}"
implementation("com.google.guava:guava:${project.version_guava}")
}
ext {
publishDebug = env.DEBUG.orElse("") == "1"
}
}
allprojects {
apply plugin: "java"
apply plugin: "architectury-plugin"
apply plugin: "maven-publish"
apply plugin: "com.modrinth.minotaur"
apply plugin: "com.matthewprenger.cursegradle"
archivesBaseName = rootProject.archives_base_name
version = "${rootProject.mod_version}-${rootProject.mod_version_type}.${rootProject.mod_subversion}+${rootProject.minecraft_version}-${project.name}"
group = rootProject.maven_group
repositories {
maven { url 'https://maven.parchmentmc.org' }
maven { url "https://maven.shedaniel.me" }
maven { url "https://maven.terraformersmc.com" }
maven { url 'https://masa.dy.fi/maven' }
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
content {
includeGroup "maven.modrinth"
}
}
flatDir { dirs "./lib" }
mavenCentral()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.release = 17
}
java {
withSourcesJar()
}
task copyFinal(type: Copy) {
print(jar)
if (project.name == "fabric" || project.name == "forge") {
from "${buildDir}/libs/keymap-${version}.jar"
into "${rootDir}/build/e_final/${rootProject.mod_version}-${rootProject.mod_version_type}.${rootProject.mod_subversion}/${rootProject.minecraft_version}"
}
}
build.finalizedBy copyFinal
if (project.name.startsWith(":") && project.name != ":common") {
kekw.dependsOn(":${project.name}:modrinth")
print("FAKKKK")
}
}
task publishAll(group: "publishing") {
def subs = subprojects.iterator().findAll(v -> !v.name.contains("common")).collect {
[":${it.name}:modrinth", ":${it.name}:curseforge"]
}.flatten()
dependsOn(subs)
}