Create

Create

86M Downloads

Maven

mrh0 opened this issue ยท 4 comments

commented

Hello, I wish to make an integration mod (with your permission of course) is there a public maven link for Create?

commented

This issue has been marked as stale because it has been inactive for 3 weeks. It will be closed if it remains inactive for another 3 weeks.

commented

This issue has been closed since it has been inactive for 3 weeks since it was marked as stale.

commented

You can always use CurseMaven to include Create as a maven dependency. CurseMaven is a tool by WynPrice to enabe using a mod available on curseforge as dependency.
Info on CurseMaven can be found here: https://www.cursemaven.com/
To use cursemaven, add

repositories {
    maven {
        url "https://www.cursemaven.com"
    }
}

to your repositories part of the project.
To use the dependency, you can write implementation fg.deobf("curse.maven:create-328085:3167528") in your dependency clause. 328085 is the project id and can be found on the curseforge page. 3167528 is the file id and can be found in the URL of the curseforge file. Therefore above example would include 0.3e for 1.15.2 from https://www.curseforge.com/minecraft/mc-mods/create/files/3167528

This should get you going for your addon mod.

commented

Actually already tried this method, however, I get this error "Could not resolve: curse.maven:create-328085:3167531_mapped_snapshot_20201028-1.16.3" Are you using some other mappings? Is it supposed to add "_mapped_snapshot_20201028-1.16.3" to the end there, I just do "implementation fg.deobf("curse.maven:create-328085:3167531")"

EDIT:
tried the mappings in your build.gradle mappings channel: 'snapshot', version: '20200920-mixed-1.16.3' but my "gradlew eclipse" now result in "Invalid mappings: snapshot_20200920-mixed-1.16.3 Could not find archive" (also added accesstransformer.cfg)