mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-06-06 08:34:12 +00:00
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:
parent
c3fe9f00d4
commit
df38f3e887
17
README.md
17
README.md
@ -26,16 +26,25 @@ on is present.
|
|||||||
```groovy
|
```groovy
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
url 'https://squiddev.cc/maven/'
|
url "https://squiddev.cc/maven/"
|
||||||
content {
|
content {
|
||||||
includeGroup 'org.squiddev'
|
includeGroup("cc.tweaked")
|
||||||
|
includeModule("org.squiddev", "Cobalt")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly fg.deobf("org.squiddev:cc-tweaked-${mc_version}:${cct_version}:api")
|
// Vanilla (i.e. for multi-loader systems)
|
||||||
runtimeOnly fg.deobf("org.squiddev:cc-tweaked-${mc_version}:${cct_version}")
|
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")
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user