Manually apply changes

This commit is contained in:
Ennui Langeweile 2022-04-20 16:31:43 -03:00
parent 0068b2d93f
commit 38f4f94d7e
No known key found for this signature in database
GPG Key ID: 688A9E714BCD13B2
3 changed files with 2 additions and 6 deletions

View File

@ -18,4 +18,4 @@ quilted_fabric_api = { module = "org.quiltmc.quilted-fabric-api:quilted-fabric-a
# example = ["example-a", "example-b", "example-c"]
[plugins]
quilt_loom = { id = "org.quiltmc.loom", version = "0.12-SNAPSHOT" }
quilt_loom = { id = "org.quiltmc.loom", version = "0.12.+" }

View File

@ -3,10 +3,6 @@ pluginManagement {
maven {
name = 'Quilt'
url = 'https://maven.quiltmc.org/repository/release'
}
maven {
name = 'Quilt Snapshot'
url = 'https://maven.quiltmc.org/repository/snapshot'
}
// Currently needed for Intermediary and other temporary dependencies
maven {

View File

@ -13,6 +13,6 @@ public class ExampleMod implements ModInitializer {
@Override
public void onInitialize(ModContainer mod) {
LOGGER.info("Hello Quilted world!");
LOGGER.info("Hello Quilt world from Example Mod v{}!", mod.metadata().version().raw());
}
}