neoforged / ModDevGradle

A Gradle plugin for developing Minecraft mods using NeoForge
https://projects.neoforged.net/neoforged/moddevgradle
GNU Lesser General Public License v2.1
25 stars 6 forks source link

Make Vanilla-Mode (NeoForm only) work #16

Closed shartte closed 2 months ago

shartte commented 2 months ago

This works by not specifying a version in the neoForge block, and only specifying neoFormVersion instead:

plugins {
  id 'net.neoforged.moddev'
}

neoForge {
  neoFormVersion = "1.20.6-20240524.210247"
}
neoforged-pr-publishing[bot] commented 2 months ago

Last commit published: 134edbc45669fbd318c9b79a06d2882bc374f4bb.

PR Publishing ### The artifacts published by this PR: - :package: [`net.neoforged:moddev-gradle:0.1.74-pr-16-vanilla-mode`](https://github.com/neoforged/ModDevGradle/packages/2174138) - :package: [`net.neoforged.moddev:net.neoforged.moddev.gradle.plugin:0.1.74-pr-16-vanilla-mode`](https://github.com/neoforged/ModDevGradle/packages/2174141) ### Repository Declaration In order to use the artifacts published by the PR, add the following repository to your buildscript: ```gradle repositories { maven { name 'Maven for PR #16' // https://github.com/neoforged/ModDevGradle/pull/16 url 'https://prmaven.neoforged.net/ModDevGradle/pr16' content { includeModule('net.neoforged', 'moddev-gradle') includeModule('net.neoforged.moddev', 'net.neoforged.moddev.gradle.plugin') } } } ```