From df38f3e887e1bbf35cd4e41eeb98edce10d52423 Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Thu, 8 Dec 2022 21:52:34 +0000 Subject: [PATCH] Update README with the new maven coordinates Currently published under 1.102.0-SNAPSHOT if anybody wants/needs to poke. I'm going to break Mount/WritableMount, but everything else should be stable! --- README.md | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index df1ea4140..fd50b14a3 100644 --- a/README.md +++ b/README.md @@ -26,16 +26,25 @@ on is present. ```groovy repositories { maven { - url 'https://squiddev.cc/maven/' + url "https://squiddev.cc/maven/" content { - includeGroup 'org.squiddev' + includeGroup("cc.tweaked") + includeModule("org.squiddev", "Cobalt") } } } dependencies { - compileOnly fg.deobf("org.squiddev:cc-tweaked-${mc_version}:${cct_version}:api") - runtimeOnly fg.deobf("org.squiddev:cc-tweaked-${mc_version}:${cct_version}") + // Vanilla (i.e. for multi-loader systems) + compileOnly("cc.tweaked:cc-tweaked-$mcVersion-common-api") + + // Forge Gradle + compileOnly fg.deobf("cc-tweaked:cc-tweaked-$mcVersion-forge-api:$cctVersion") + runtimeOnly fg.deobf("cc-tweaked:cc-tweaked-$mcVersion-forge:$cctVersion") + + // Fabric Loom + modCompileOnly("cc-tweaked:cc-tweaked-$mcVersion-fabric-api:$cctVersion") + modRuntimeOnly("cc-tweaked:cc-tweaked-$mcVersion-fabric:$cctVersion") } ```