JvmPluginDescriptionBuilder
JvmPluginDescription 构建器.
Kotlin Example
val desc = JvmPluginDescription("org.example.example-plugin", "1.0.0") {
info("This is an example plugin")
dependsOn("org.example.another-plugin")
}
Content copied to clipboard
Java Example
JvmPluginDescription desc = new JvmPluginDescriptionBuilder("org.example.example-plugin", "1.0.0")
.info("This is an example plugin")
.dependsOn("org.example.another-plugin")
.build();
Content copied to clipboard
See also
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun dependsOn(pluginId: String, versionRequirement: String, isOptional: Boolean = false): JvmPluginDescriptionBuilder
无版本要求
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard