forked from StephanMa/betterFORM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.properties.xml
70 lines (60 loc) · 2.61 KB
/
release.properties.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!--
~ Copyright (c) 2012. betterFORM Project - http://www.betterform.de
~ Licensed under the terms of BSD License
-->
<!--
###################################################################################
betterFORM RELEASE PROPERTIES
These properties must only be used in combination with web/build-release.xml
Ant properties utilized during development can be found in build.properties.xml
in the same directory
###################################################################################
-->
<root>
<properties>
<javac>
<deprecation>off</deprecation>
<debug>off</debug>
<optimize>on</optimize>
<version>1.6</version>
</javac>
</properties>
<config>
<!--+ web.xml configuration
+ caching: enables caching of all resources served by the ResourceServlet (scripts / css / images)
+ debugDWR: enable / disable dwr logging -->
<webinf>
<caching>true</caching>
<debugDWR>false</debugDWR>
</webinf>
<!--+ betterform-config configuration
+ generateDefaultAlerts: if enabled default alerts are generated for all ui controls
+ debugComponents: enables the betterform debug bar and event logger
+ enableEventOptimization if enabled, only events present within the current form are processed
+ initLogging if set to false logging is not enabled at all
+ doIncludes: if enabled forms are scanned for bf:include tags and transformed accordingly
+ mailadmin: email address of the Server Admin -->
<bfconfig>
<generateDefaultAlerts>false</generateDefaultAlerts>
<debugComponents>false</debugComponents>
<enableEventOptimization>true</enableEventOptimization>
<initLogging>true</initLogging>
<doIncludes>false</doIncludes>
<mailadmin>[email protected]</mailadmin>
</bfconfig>
<!--+ log4j.xml Configuration
+ appender: log4j appender, decides where the log output goes to
+ possible values are: 'SHELL' or 'ROLLING_FILE'
+ loglevel define log levels for root,betterform and drw
+ common log levels are: 'DEBUG', 'INFO', 'WARN','DEBUG','TRACE' -->
<log4j>
<appender>SHELL</appender>
<loglevel>
<root>ERROR</root>
<betterform>ERROR</betterform>
<cache>ERROR</cache>
<dwr>ERROR</dwr>
</loglevel>
</log4j>
</config>
</root>