io.github.antoniopetricca.maven.plugins.filemerger.configuration.AbstractFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of filemerger-maven-plugin Show documentation
Show all versions of filemerger-maven-plugin Show documentation
Loads and merges text/code/configuration external files into another one by placeholders.
The newest version!
package io.github.antoniopetricca.maven.plugins.filemerger.configuration;
import java.nio.charset.StandardCharsets;
public abstract class AbstractFile extends AbstractValidObject {
private String charset = StandardCharsets.UTF_8.name();
private boolean filtering = false;
public String getCharset() {
return charset;
}
public boolean isFiltering() {
return filtering;
}
}