aQute.bnd.plugin.gradle.GradlePlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bndlib Show documentation
Show all versions of biz.aQute.bndlib Show documentation
bndlib: A Swiss Army Knife for OSGi
package aQute.bnd.plugin.gradle;
import aQute.bnd.annotation.plugin.BndPlugin;
import aQute.bnd.service.lifecycle.LifeCyclePlugin;
/**
* The Gradle life cycle plugin. ACtually nothing to do since gradle does not
* require any specific files in a project
*/
@BndPlugin(name = "gradle")
public class GradlePlugin extends LifeCyclePlugin {
@Override
public String toString() {
return "GradlePlugin";
}
}