1
- @file:Suppress(" UnstableApiUsage" )
1
+ @file:Suppress(" DEPRECATION" , " HasPlatformType" )
2
+
3
+ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
4
+ import net.fabricmc.loom.task.RemapJarTask
5
+ import org.gradle.api.component.AdhocComponentWithVariants
2
6
3
7
plugins {
4
- id(" fabric-loom" ) version " 1.3-SNAPSHOT"
8
+ id(" com.github.johnrengelman.shadow" ) version " 7.1.2"
9
+ }
10
+
11
+ architectury {
12
+ platformSetupLoomIde()
13
+ fabric()
5
14
}
6
15
7
- val loaderVersion: String by extra
8
- val yarnMappings: String by extra
9
- val modVersion: String by extra
10
16
val minecraftVersion: String by extra
17
+ val fabricLoaderVersion: String by extra
18
+ val fabricMinecraftVersionRange: String by extra
19
+ val modVersion: String by extra
20
+
21
+ val common by configurations.creating
22
+ val shadowCommon by configurations.creating
23
+
24
+ configurations[" compileClasspath" ].extendsFrom(common)
25
+ configurations[" runtimeClasspath" ].extendsFrom(common)
26
+ configurations[" developmentFabric" ].extendsFrom(common)
11
27
12
28
dependencies {
13
- minecraft(" com.mojang:minecraft:$minecraftVersion " )
14
- mappings(" net.fabricmc:yarn:$minecraftVersion +build.$yarnMappings :v2" )
15
- modImplementation(" net.fabricmc:fabric-loader:$loaderVersion " )
29
+ modImplementation(" net.fabricmc:fabric-loader:$fabricLoaderVersion " )
16
30
31
+ common(project(path = " :common" , configuration = " namedElements" )) { isTransitive = false }
32
+ shadowCommon(project(path = " :common" , configuration = " transformProductionFabric" )) { isTransitive = false }
17
33
}
18
34
19
35
tasks.withType<ProcessResources > {
20
- val replaceProperties = mapOf (" version " to modVersion, " minecraftVersion" to minecraftVersion)
36
+ val replaceProperties = mapOf (" modVersion " to modVersion, " minecraftVersion" to minecraftVersion)
21
37
22
38
inputs.properties(replaceProperties)
23
39
@@ -26,19 +42,30 @@ tasks.withType<ProcessResources> {
26
42
}
27
43
}
28
44
29
- tasks.withType<JavaCompile > {
30
- options.release.set(17 )
45
+ tasks.withType<ShadowJar > {
46
+ configurations = listOf (shadowCommon)
47
+ archiveClassifier.set(" dev-shadow" )
31
48
}
32
49
33
- java {
34
- withSourcesJar ()
35
-
36
- sourceCompatibility = JavaVersion . VERSION_17
37
- targetCompatibility = JavaVersion . VERSION_17
50
+ tasks.withType< RemapJarTask > {
51
+ val shadowTask = tasks.shadowJar.get ()
52
+ input.set(shadowTask.archiveFile)
53
+ dependsOn(shadowTask)
54
+ archiveClassifier.set( " " )
38
55
}
39
56
40
57
tasks.jar {
41
- from(" LICENSE" ) {
42
- rename { " ${it} _${project.base.archivesName.get()} " }
58
+ archiveClassifier.set(" dev" )
59
+ }
60
+
61
+ tasks.sourcesJar {
62
+ val commonSources = project(" :common" ).tasks.sourcesJar.get()
63
+ dependsOn(commonSources)
64
+ from(commonSources.archiveFile.map { zipTree(it) })
65
+ }
66
+
67
+ components.getByName<AdhocComponentWithVariants >(" java" ).apply {
68
+ withVariantsFromConfiguration(project.configurations[" shadowRuntimeElements" ]) {
69
+ skip()
43
70
}
44
71
}
0 commit comments