https://github.com/mcparkournet/migle
Minecraft plugin Gradle plugin
https://github.com/mcparkournet/migle
gradle gradle-plugin minecraft-plugin paper velocity waterfall
Last synced: about 2 months ago
JSON representation
Minecraft plugin Gradle plugin
- Host: GitHub
- URL: https://github.com/mcparkournet/migle
- Owner: mcparkournet
- License: mit
- Created: 2019-05-25T01:09:59.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-17T16:13:31.000Z (over 4 years ago)
- Last Synced: 2025-01-23T03:44:28.921Z (4 months ago)
- Topics: gradle, gradle-plugin, minecraft-plugin, paper, velocity, waterfall
- Language: Kotlin
- Homepage:
- Size: 147 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Migle
Migle is a Gradle plugin, which generates Minecraft plugin attributes file, based on Gradle build file configuration. Currently, it supports following plugin types:
* [Bukkit](https://plugins.gradle.org/plugin/net.mcparkour.migle.migle-bukkit)
* [Bungee](https://plugins.gradle.org/plugin/net.mcparkour.migle.migle-bungee)
* [Velocity](https://plugins.gradle.org/plugin/net.mcparkour.migle.migle-velocity)## Usage
Add the following block to Gradle build file:
```kotlin
plugins {
id("net.mcparkour.migle.migle-bukkit") version "1.1.2"
}
```Then, add to plugin configuration attributes to set:
```kotlin
migleBukkit {
main = "net.mcparkour.foo.FooPlugin"
apiVersion = ApiVersion.VERSION_1_16
author = "MCParkour"
website = "https://www.mcparkour.net/"
depend = listOf("bar")
}
```By default, plugin sets name, version and description attributes using project properties.