Approval confirmation
Approval confirmation
Delete plugin confirmation
To confirm the plugin deletion insert pluginId and author name
The NeoForged Project
net.neoforged.moddev
PluginId
Author
net.neoforged.moddev
Owner: The NeoForged Project
This plugin helps you create Minecraft mods using the NeoForge platform
Version 2.0.64-beta
2.0.64-beta
Created 28 December 2024.
This plugin helps you create Minecraft mods using the NeoForge platform
Other versions
- 2.0.72
- 2.0.71
- 2.0.70-beta
- 2.0.69-beta
- 2.0.68-beta
- 2.0.67-beta
- 2.0.66-beta
- 2.0.65-beta
- 2.0.63-beta
- 2.0.62-beta
- 2.0.61-beta
- 2.0.60-beta
- 2.0.59-beta
- 2.0.58-beta
- 2.0.57-beta
- 2.0.56-beta
- 2.0.55-beta
- 2.0.54-beta
- 2.0.53-beta
- 2.0.52-beta
- 2.0.51-beta
- 2.0.50-beta
- 2.0.49-beta
- 2.0.48-beta
- 2.0.47-beta
- 2.0.46-beta
- 2.0.45-beta
- 2.0.44-beta
- 2.0.43-beta
- 2.0.42-beta
- 2.0.41-beta
- 2.0.40-beta
- 2.0.39-beta
- 2.0.38-beta
- 2.0.37-beta
- 2.0.36-beta
- 2.0.35-beta
- 2.0.34-beta
- 2.0.33-beta
- 2.0.32-beta
- 2.0.31-beta
- 2.0.30-beta
- 2.0.29-beta
- 2.0.28-beta
- 2.0.27-beta
- 2.0.26-beta
- 2.0.25-beta
- 2.0.24-beta
- 2.0.23-beta
- 2.0.22-beta
- 2.0.21-beta
- 2.0.20-beta
- 2.0.19-beta
- 2.0.18-beta
- 2.0.17-beta
- 2.0.16-beta
- 2.0.15-beta
- 2.0.14-beta
- 2.0.13-beta
- 2.0.12-beta
- 2.0.11-beta
- 2.0.10-beta
- 2.0.9-beta
- 2.0.8-beta
- 2.0.7-beta
- 2.0.6-beta
- 2.0.5-beta
- 2.0.1-beta
- 1.0.24
- 1.0.23
- 1.0.21
- 1.0.20
- 1.0.19
- 1.0.18
- 1.0.17
- 1.0.16-1.x
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.1
- 1.0.0
- 0.1.131
- 0.1.130
- 0.1.129
- 0.1.128
- 0.1.126
- 0.1.125
- 0.1.124
- 0.1.122
- 0.1.121
- 0.1.120
- 0.1.119
- 0.1.117
- 0.1.116
- 0.1.114
- 0.1.112
- 0.1.111
- 0.1.110
- 0.1.108
- 0.1.107
- 0.1.106
- 0.1.105
- 0.1.104
- 0.1.103
- 0.1.102
- 0.1.100
- 0.1.99
- 0.1.98
- 0.1.97
- 0.1.96
- 0.1.95
- 0.1.94
- 0.1.93
- 0.1.92
- 0.1.91
- 0.1.90
- 0.1.89
- 0.1.88
- 0.1.87
- 0.1.86
- 0.1.84
- 0.1.82
- 0.1.81
- 0.1.80
- 0.1.79
- 0.1.78
- 0.1.77
- 0.1.76
- 0.1.74
- 0.1.71
Add this plugin to your build using the plugins DSL:
plugins {
id("net.neoforged.moddev") version "2.0.64-beta"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("net.neoforged.moddev:net.neoforged.moddev.gradle.plugin:2.0.64-beta") }
It can then be applied in the precompiled script plugin:plugins { id("net.neoforged.moddev") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.neoforged.moddev:net.neoforged.moddev.gradle.plugin:2.0.64-beta") } } apply(plugin = "net.neoforged.moddev")
- Applying plugins to all subprojects .