version given as non-existent even though it exists #1972
Answered
by
SquidDev
AugustoMegener
asked this question in
Q&A
-
I'm trying to start a cc addon project, but the implementation doesn't want to work, it doesn't identify the address even though I'm using the exact same format as the cc readme and the version exists, so I copied it from AP and it still doesn't work, how come it works on AP and doesn't work for me? It doesn't make sense I'm using minecraft 1.20.1, forge 47.3.7 and cc 1.110.0. I'm also using kotlin for forge
|
Beta Was this translation helpful? Give feedback.
Answered by
SquidDev
Sep 11, 2024
Replies: 1 comment
-
It looks like you're missing the repository declaration. You'll also need to add the following to your build.gradle file: repositories {
maven {
url "https://maven.squiddev.cc"
content {
includeGroup("cc.tweaked")
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
SquidDev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like you're missing the repository declaration. You'll also need to add the following to your build.gradle file: