com.github.sviperll.maven.plugin.mustache.Context Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mustache-maven-plugin Show documentation
Show all versions of mustache-maven-plugin Show documentation
Render mustache templates during the build
/*
* Copyright 2015 Victor Nazarov .
*/
package com.github.sviperll.maven.plugin.mustache;
import java.io.File;
import java.util.Collections;
import java.util.List;
/**
*
* @author Victor Nazarov <[email protected]>
*/
public class Context {
/**
* File used as a context for mustache templates.
*/
File file;
/**
* Type of context file.
*
*
* - json
*
- properties
*
*/
String type = "json";
/**
* File to read or write properties to.
*/
List templates = Collections.emptyList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy