now with recipes + removed oc2r support for lc support instead

This commit is contained in:
Robert MacRae 2025-01-25 19:30:07 -04:00
parent 06a0ff2060
commit b8ade187e0
35 changed files with 827 additions and 39 deletions

View file

@ -71,6 +71,9 @@ repositories {
}
}
}
flatDir {
dirs("libs")
}
}
dependencies {
@ -81,13 +84,14 @@ dependencies {
// we can include these directly (and will have a local library mod using the local
// versions). Can't get these to get properly resolved in the IDE otherwise (doesn't
// pick them up via the library mod due to the embed configuration).
if (hasGithubPackageCredentials) {
compileOnly "li.cil.ceres:ceres:0.0.4"
compileOnly "li.cil.sedna:sedna:2.0.8"
compileOnly "li.cil.sedna:sedna-buildroot:0.0.8"
}
implementation "curse.maven:sedna-511276:3885542"
minecraftLibrary "org.apache.commons:commons-collections4:4.4"
// if (hasGithubPackageCredentials) {
// compileOnly "li.cil.ceres:ceres:0.0.4"
// compileOnly "li.cil.sedna:sedna:2.0.8"
// compileOnly "li.cil.sedna:sedna-buildroot:0.0.8"
// }
// implementation "curse.maven:sedna-511276:3885542"
// minecraftLibrary "org.apache.commons:commons-collections4:4.4"
implementation fileTree(dir: "libs", includes: ['*.jar'])
implementation fg.deobf("curse.maven:markdownmanual-502485:4873115")
implementation fg.deobf("curse.maven:architectury-api-419699:5137938")
@ -97,31 +101,31 @@ dependencies {
runtimeOnly fg.deobf("mezz.jei:jei-1.20.1-forge:15.3.0.4")
compileOnly fg.deobf("mrtjp:ProjectRed:${minecraft_version}-${pr_version}:api")
runtimeOnly fg.deobf("io.codechicken:CodeChickenLib:${minecraft_version}-${ccl_version}:universal")
runtimeOnly fg.deobf("io.codechicken:CBMultipart:${minecraft_version}-${cbm_version}:universal")
runtimeOnly fg.deobf("mrtjp:ProjectRed:${minecraft_version}-${pr_version}:core")
runtimeOnly fg.deobf("mrtjp:ProjectRed:${minecraft_version}-${pr_version}:transmission")
// compileOnly fg.deobf("mrtjp:ProjectRed:${minecraft_version}-${pr_version}:api")
// runtimeOnly fg.deobf("io.codechicken:CodeChickenLib:${minecraft_version}-${ccl_version}:universal")
// runtimeOnly fg.deobf("io.codechicken:CBMultipart:${minecraft_version}-${cbm_version}:universal")
// runtimeOnly fg.deobf("mrtjp:ProjectRed:${minecraft_version}-${pr_version}:core")
// runtimeOnly fg.deobf("mrtjp:ProjectRed:${minecraft_version}-${pr_version}:transmission")
if (debug_embeddium)
{
runtimeOnly fg.deobf("curse.maven:embeddium-908741:5521846")
}
// if (debug_embeddium)
// {
// runtimeOnly fg.deobf("curse.maven:embeddium-908741:5521846")
// }
if (debug_embeddium_plus_plus)
{
runtimeOnly fg.deobf("curse.maven:embeddiumplus-931925:5436746")
}
// if (debug_embeddium_plus_plus)
// {
// runtimeOnly fg.deobf("curse.maven:embeddiumplus-931925:5436746")
// }
if (debug_oculus)
{
runtimeOnly fg.deobf("curse.maven:oculus-581495:5299671")
}
// if (debug_oculus)
// {
// runtimeOnly fg.deobf("curse.maven:oculus-581495:5299671")
// }
testImplementation "org.mockito:mockito-inline:4.3.1"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.8.2"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.8.2"
implementation fg.deobf("curse.maven:oc2r-1037738:5544316")
// testImplementation "org.mockito:mockito-inline:4.3.1"
// testImplementation "org.junit.jupiter:junit-jupiter-api:5.8.2"
// testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.8.2"
// implementation fg.deobf("curse.maven:oc2r-1037738:5544316")
}
System.setProperty("line.separator", "\n")