diff --git a/build.gradle b/build.gradle index c174096..7d9f03b 100644 --- a/build.gradle +++ b/build.gradle @@ -71,61 +71,17 @@ repositories { } } } - flatDir { - dirs("libs") - } } dependencies { minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" annotationProcessor "org.spongepowered:mixin:0.8.5:processor" - // Specify the libs embedded in the library mod explicitly for local development, where - // 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" - implementation fileTree(dir: "libs", includes: ['*.jar']) - implementation fg.deobf("curse.maven:markdownmanual-502485:4873115") implementation fg.deobf("curse.maven:architectury-api-419699:5137938") - - compileOnly fg.deobf("mezz.jei:jei-1.20.1-common-api:15.3.0.4") - compileOnly fg.deobf("mezz.jei:jei-1.20.1-forge-api:15.3.0.4") + implementation fg.deobf("curse.maven:libre-computers-1163239:6126363") 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") - -// 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_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") } System.setProperty("line.separator", "\n")