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

org.webpieces.gradle.compiler.TemplateCompileOptions Maven / Gradle / Ivy

The newest version!
package org.webpieces.gradle.compiler;

import java.util.Set;

import javax.inject.Inject;

import org.gradle.api.Project;
import org.gradle.api.tasks.Input;
import org.gradle.api.tasks.Optional;

public class TemplateCompileOptions {
    private String encoding = "UTF-8";
	private Set customTags;
    
	@Inject
	public TemplateCompileOptions(Project project) {
	}
	
    @Optional @Input
    public String getEncoding() {
        return encoding;
    }

    public void setEncoding(String encoding) {
        this.encoding = encoding;
    }
    
    public Set getCustomTags() {
    	return customTags;
    }

	public void setCustomTags(Set customTags) {
		this.customTags = customTags;
	}
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy