We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c12b34c commit 6a84c73Copy full SHA for 6a84c73
CHANGELOG.md
@@ -1,5 +1,9 @@
1
## [Unreleased]
2
3
+### Added
4
+
5
+- Plugin meta now supports field `libraries`.
6
7
### Housekeeping
8
9
- Gradle 7.1.1 -> 7.2
src/main/kotlin/meta/PluginMetaYaml.kt
@@ -49,6 +49,9 @@ internal data class PluginMetaYaml(
49
/** A list of plugins that should be loaded after your plugin. */
50
val loadbefore: List<String>? = null,
51
52
+ /** A list of libraries your plugin needs which can be loaded from Maven Central. */
53
+ val libraries: List<String>? = null,
54
55
/** The name of a command the plugin wishes to register, as well as an optional list of command attributes. */
56
val commands: Map<String, PluginCommand>? = null,
57
0 commit comments