tom5454 / Create-Ore-Excavation

Extract resources using machines powered by Rotational Force
https://www.curseforge.com/minecraft/mc-mods/create-ore-excavation
MIT License
24 stars 24 forks source link

When trying to build/compile the 1.20 forge source for the mod, it gives me this error. I haven't edited a thing in the source. #152

Closed GoldenWerewolf112 closed 1 month ago

GoldenWerewolf112 commented 1 month ago

Cause 1: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find dev.latvian.mods:kubejs-forge:2001.6.3-build.45. Searched in the following locations:

FAILURE: Build failed with an exception.

Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.

You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.

See https://docs.gradle.org/7.5/userguide/command_line_interface.html#sec:command_line_warnings

BUILD FAILED in 13s

tom5454 commented 1 month ago

KubeJS and it's dependencies on 1.20 were removed from maven (for some reason). Edit the build.gradle and add

repositories {
    ... other mavens ...
    maven {
        url "https://maven.latvian.dev/releases"
        content {
            includeGroup "dev.latvian.mods"
            includeGroup "dev.latvian.apps"
        }
    }
}
GoldenWerewolf112 commented 1 month ago

Oh... yeah. It worked, thanks. 😅