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

com.fizzed.rocker.gradle.RockerSourceSetProperty Maven / Gradle / Ivy

The newest version!
package com.fizzed.rocker.gradle;

import org.gradle.api.Action;
import org.gradle.api.Project;
import org.gradle.api.tasks.SourceSet;
import org.gradle.util.ConfigureUtil;

import groovy.lang.Closure;

/**
 * The rocker property added to the {@link SourceSet}.
 */
public class RockerSourceSetProperty {

    private final TemplateDirectorySet templateDirs;

    /**
     * @param project - main gradle project
     */
    public RockerSourceSetProperty(Project project) {
        super();
        templateDirs = new TemplateDirectorySet(project);
    }

    public TemplateDirectorySet getRocker() {
        return templateDirs;
    }

    public RockerSourceSetProperty rocker(Closure configureClosure) {
        ConfigureUtil.configure(configureClosure, getRocker());
        return this;
    }

    public RockerSourceSetProperty rocker(
        Action configureAction) {
        configureAction.execute(getRocker());
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy