mirror of
https://github.com/QuiltMC/quilt-template-mod
synced 2024-08-15 00:23:32 +00:00
Review the changes post-commit
This commit is contained in:
parent
55e7547d49
commit
65543cf5ad
1 changed files with 5 additions and 4 deletions
|
@ -19,18 +19,19 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
loom {
|
loom {
|
||||||
// Loom and Loader use this block to gather more information about your mod.
|
// Loom and Loader both use this block in order to gather more information about your mod.
|
||||||
mods {
|
mods {
|
||||||
// This should match your mod's mod id.
|
// This should match your mod id.
|
||||||
"example_mod" {
|
"example_mod" {
|
||||||
// Tell Loom about each source set used by your mod here. This ensures that your mod's classes are properly transformed by Loader.
|
// Tell Loom about each source set used by your mod here. This ensures that your mod's classes are properly transformed by Loader.
|
||||||
sourceSet("main")
|
sourceSet("main")
|
||||||
// If you shade (directly include classes, not JiJ) a dependency into your mod, include it here using one of these methods:
|
// If you shade (directly include classes, not JiJ) a dependency into your mod, include it here using one of these methods:
|
||||||
//dependency("com.example.shadowedmod:1.2.3")
|
// dependency("com.example.shadowedmod:1.2.3")
|
||||||
//configuration("exampleShadedConfigurationName")
|
// configuration("exampleShadedConfigurationName")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// All the dependencies are declared at gradle/libs.version.toml and referenced with "libs.<id>"
|
// All the dependencies are declared at gradle/libs.version.toml and referenced with "libs.<id>"
|
||||||
// See https://docs.gradle.org/current/userguide/platforms.html for information on how version catalogs work.
|
// See https://docs.gradle.org/current/userguide/platforms.html for information on how version catalogs work.
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
Loading…
Reference in a new issue