Jump to content

How to create a custom channel (and use yarn mapping)?


reserveword

Recommended Posts

I saw discussion in https://github.com/MinecraftForge/ForgeGradle/pull/796 about creating custom channel.

So now I want to use yarn mapping instead of (not clearly licensed) official mapping, what should I do?

I tried this code:

channelProviders.addProvider(new ChannelProvider() {
    Set<String> getChannels() {
        println "channels"
        return ImmutableSet.of('yarn')
    }

    File getMappingsFile(MCPRepo mcpRepo, Project project, String channel, String version) {
        String desc = "net.fabricmc:yarn:" + version + ":v2@zip";
        println 'get' + desc
        return MavenArtifactDownloader.manual(project, desc, false);
    }
})

 

but it didn't work. It seems that `channelProviders` get reset after I changed it. error says:

Error getting artifact: net.minecraft:mappings_yarn:1.0.1:null@zip from  MCPRepo
java.lang.IllegalArgumentException: Unknown mapping provider: yarn_1, currently loaded: [stable_nodoc, snapshot_nodoc, stable, official, snapshot]

I would expect this yarn project has different syntax from mcp, but in that case I can write another program to fix that.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.