-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixture-wro4j.xml
26 lines (22 loc) · 1.46 KB
/
fixture-wro4j.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd ">
<context:property-placeholder location="classpath:fixture.properties"/>
<util:properties id="properties">
<prop key="debug">${fixture.wro4j.debug}</prop>
<prop key="disableCache">${fixture.wro4j.disableCache}</prop>
<prop key="parallelPreprocessing">${fixture.wro4j.parallelPreprocessing}</prop>
<prop key="ignoreMissingResources">${fixture.wro4j.ignoreMissingResources}</prop>
<prop key="managerFactoryClassName">ro.isdc.wro.manager.factory.ConfigurableWroManagerFactory</prop>
<prop key="preProcessors">rubySassCss</prop>
</util:properties>
<bean id="wroFilter"
class="ro.isdc.wro.http.ConfigurableWroFilter"
p:properties-ref="properties"/>
</beans>