2017-06-26 16:07:43 +02:00
|
|
|
<application mode="{{ smartgears_application_mode }}">
|
2017-03-23 17:34:08 +01:00
|
|
|
|
2017-06-26 14:43:39 +02:00
|
|
|
<name>{{ item.webapp_name }}</name>
|
|
|
|
<group>{{ item.webapp_group }}</group>
|
|
|
|
<version>{{ item.version }}</version>
|
|
|
|
{% if item.description is defined %}
|
2017-11-24 16:10:47 +01:00
|
|
|
<description> {{ item.description }} </description>
|
2017-05-09 14:22:19 +02:00
|
|
|
{% endif %}
|
2017-06-26 14:43:39 +02:00
|
|
|
{% if item.persistence_location is defined %}
|
2017-11-28 13:08:13 +01:00
|
|
|
<persistence location="{{ item.persistence_location }}"/>
|
2017-03-23 17:34:08 +01:00
|
|
|
{% endif %}
|
2017-06-26 14:43:39 +02:00
|
|
|
{% if item.exclude_handlers is defined %}
|
|
|
|
{% for eh in item.exclude_handlers %}
|
2017-05-09 14:22:19 +02:00
|
|
|
<exclude {{ eh }}</exclude>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2017-03-23 17:34:08 +01:00
|
|
|
|
|
|
|
</application>
|
|
|
|
|