Skip to content

Commit 6a84c73

Browse files
committed
feat: Add libraries field to ItemMeta
1 parent c12b34c commit 6a84c73

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## [Unreleased]
22

3+
### Added
4+
5+
- Plugin meta now supports field `libraries`.
6+
37
### Housekeeping
48

59
- Gradle 7.1.1 -> 7.2

src/main/kotlin/meta/PluginMetaYaml.kt

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ internal data class PluginMetaYaml(
4949
/** A list of plugins that should be loaded after your plugin. */
5050
val loadbefore: List<String>? = null,
5151

52+
/** A list of libraries your plugin needs which can be loaded from Maven Central. */
53+
val libraries: List<String>? = null,
54+
5255
/** The name of a command the plugin wishes to register, as well as an optional list of command attributes. */
5356
val commands: Map<String, PluginCommand>? = null,
5457

0 commit comments

Comments
 (0)