plugin-dev.greeting-plugin.src.main.java.org.sample.GreetingPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
package org.sample;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
import java.util.LinkedHashMap;
public class GreetingPlugin implements Plugin {
public void apply(Project project) {
project.getTasks().create("greeting", GreetingTask.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy