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!
This commit is contained in:
Jonathan Coates 2022-12-08 21:52:34 +00:00
parent c3fe9f00d4
commit df38f3e887
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06
1 changed files with 13 additions and 4 deletions

View File

@ -26,16 +26,25 @@ ## Using
```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")
}
```