aQute.bnd.maven.generate.plugin.GenerateOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bnd-generate-maven-plugin Show documentation
Show all versions of bnd-generate-maven-plugin Show documentation
Generate Code using the Plugin based BND Codegenerator function
The newest version!
package aQute.bnd.maven.generate.plugin;
import aQute.bnd.build.Project;
@FunctionalInterface
public interface GenerateOperation {
/**
* Performs this operation on the given arguments.
*
* @param taskname name of the task performing the operation
* @param project the project upon which to run the 'generate' task
* @return the number of errors
* @throws Exception
*/
int apply(String taskname, Project project) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy