Package info.magnolia.module.inplacetemplating.setup

Examples of info.magnolia.module.inplacetemplating.setup.TemplatesInstallTask


*/
public class ModuleVersionHandler extends DefaultModuleVersionHandler {

    public ModuleVersionHandler(){
        Delta delta = DeltaBuilder.update("1.0.4", "")
        .addTask(new TemplatesInstallTask("/thymeleaf_proto/.*\\.html", true));
        register(delta);
    }
View Full Code Here


    }

    @Override
    protected List<Task> getBasicInstallTasks(InstallContext installContext) {
        List<Task> install = super.getBasicInstallTasks(installContext);
        install.add(new TemplatesInstallTask("/thymeleaf_proto/.*\\.html", true));
        return install;
    }
View Full Code Here

TOP

Related Classes of info.magnolia.module.inplacetemplating.setup.TemplatesInstallTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.