{% if site.custom_pom_template %} {% capture maven_pom_template %} {% include pom.xml %} {% endcapture %} {% else %} {% capture maven_pom_template %} {@= groupId @} {@= artifactId @} {@= version @} {% endcapture %} {% endif %} {% if site.custom_gradle_template %} {% capture gradle_template %} {% include build.gradle %} {% endcapture %} {% else %} {% capture gradle_template %} dependencies { compile '{@= groupId @}:{@= artifactId @}:{@= version @}' } {% endcapture %} {% endif %}