-
Notifications
You must be signed in to change notification settings - Fork 0
Development setup
Sergey Shatunov edited this page Dec 27, 2023
·
2 revisions
First of all you need to add repositories below:
maven {
name "kkIncReleases"
url "https://maven.aur.rocks/releases"
mavenContent {
releasesOnly()
}
}
maven {
name "kkIncSnapshots"
url "https://maven.aur.rocks/snapshots"
mavenContent {
snapshotsOnly()
}
}
maven("https://maven.aur.rocks/releases") {
name = "kkIncReleases"
mavenContent {
releasesOnly()
}
}
maven("https://maven.aur.rocks/snapshots") {
name = "kkIncSnapshots"
mavenContent {
snapshotsOnly()
}
}
If you plan to only use release versions of TCL you can omit snapshots repository.
modCompileOnlyApi("dev.tcl:the-config-lib-common:$tcl_version")
modImplementation("dev.tcl:the-config-lib-fabric:$tcl_version")
modImplementation("dev.tcl:the-config-lib-forge:$tcl_version")
modImplementation("dev.tcl:the-config-lib-neoforge:$tcl_version")