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

io.freefair.gradle.plugins.plantuml.PlantumlPlugin Maven / Gradle / Ivy

package io.freefair.gradle.plugins.plantuml;


import org.gradle.api.Plugin;
import org.gradle.api.Project;
import org.gradle.api.artifacts.Configuration;

/**
 * @author Lars Grefer
 */
public class PlantumlPlugin implements Plugin {

    @Override
    public void apply(Project project) {
        Configuration plantuml = project.getConfigurations().create("plantuml");

        plantuml.defaultDependencies(s -> {
            // Note that this version should be kept in sync with build.gradle
            s.add(project.getDependencies().create("net.sourceforge.plantuml:plantuml:1.2024.3"));
        });

        project.getTasks().withType(PlantumlTask.class).configureEach(plantumlTask -> {
            plantumlTask.getPlantumlClasspath().from(plantuml);
            plantumlTask.getOutputDirectory().convention(project.getLayout().getBuildDirectory().dir("plantuml"));
        });

        project.getTasks().register("plantUml", PlantumlTask.class, plantumlTask -> {
            plantumlTask.source("src/plantuml");
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy