All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.gradle.task.elasticsearch.plugin.MetaPluginPropertiesExtension.groovy Maven / Gradle / Ivy

Go to download

Gradle plugins for the developer kit for building and testing Elasticsearch and Elasticsearch plugins

The newest version!
package org.xbib.gradle.task.elasticsearch.plugin

import org.gradle.api.Project
import org.gradle.api.tasks.Input

/**
 * A container for meta plugin properties that will be written to the meta plugin descriptor, for easy
 * manipulation in the gradle DSL.
 */
class MetaPluginPropertiesExtension {
    @Input
    String name

    @Input
    String description

    /**
     * The plugins this meta plugin wraps.
     * Note this is not written to the plugin descriptor, but used to setup the final zip file task.
     */
    @Input
    List plugins

    MetaPluginPropertiesExtension(Project project) {
        name = project.name
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy