
org.webpieces.gradle.compiler.TemplateCompileOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin-htmlcompiler Show documentation
Show all versions of gradle-plugin-htmlcompiler Show documentation
Gradle plugin to compile html files to java Class files for production use
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