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

nebula.plugin.nothing.NothingPlugin.groovy Maven / Gradle / Ivy

package nebula.plugin.nothing

import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.api.logging.Logger
import org.gradle.api.logging.Logging

/**
 * Restores status of project after Java plugin runs. The one caveat is that this plugin has to be run before the
 * BasePlugin is applied, else we can't restore the status.
 */
class NothingPlugin implements Plugin {

    Logger logger = Logging.getLogger(NothingPlugin);

    Project project

    void apply(Project project) {

        this.project = project

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy