~ubuntu-branches/ubuntu/saucy/commons-configuration/saucy

« back to all changes in this revision

Viewing changes to conf/test.properties

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2013-07-01 16:29:44 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130701162944-98waq5gogha5gpn1
Tags: 1.9-1
* New upstream release
* debian/control:
  - Updated Standards-Version to 3.9.4 (no changes)
  - Use canonical URLs for the Vcs-* fields
  - Added new build dependencies (libjavacc-maven-plugin-java, junit4)
  - Upgraded the dependency on the Servlet API (2.5 -> 3.0)
  - Removed the dependency on the Activation Framework (glassfish-activation)
  - Replaced the dependency on glassfish-mail with libgnumail-java
  - Removed the unused dependencies:
    liblog4j1.2-java-doc, libmaven-assembly-plugin-java
  - Replaced the dependency on libcommons-jexl-java by libcommons-jexl2-java
* debian/watch: Changed to point the official Apache distribution server
* Removed the obsolete file debian/ant.properties
* Installed the upstream changelog in the binary packages
* Added the report plugins to maven.ignoreRules
* Added the classpath attribute to the jar manifest

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
configuration.loaded = true
2
 
 
3
 
packages = packagea
4
 
propertyInOrder = test.properties
5
 
 
6
 
include = include.properties
7
 
 
8
 
include.file = include-interpol.properties
9
 
include = ${include.file}
10
 
 
11
 
test.unescape = This \n string \t contains \" escaped \\ character\u0073
12
 
test.unescape.list-separator = This string contains \, an escaped list separator
13
 
 
14
 
#
15
 
# Other test properties
16
 
#
17
 
 
18
 
test.equals = value=one
19
 
 
20
 
test.empty =
21
 
 
22
 
test.mixed.array = a
23
 
test.mixed.array = b, c, d
24
 
 
25
 
test.multilines = This is a value spread out across several adjacent \
26
 
                  natural lines by escaping the line terminator with \
27
 
                  a backslash character.
28
 
 
29
 
#
30
 
# Test a property that uses a previous property
31
 
#
32
 
 
33
 
base = base
34
 
base.reference = ${base}extra
35
 
base.reference.array = ${base}extra
36
 
base.reference.array = ${base}extra
37
 
 
38
 
#
39
 
# Non String Properties
40
 
#
41
 
 
42
 
test.boolean       = true
43
 
test.boolean.array = false
44
 
test.boolean.array = true
45
 
 
46
 
test.byte       = 10
47
 
test.byte.array = 20
48
 
test.byte.array = 30
49
 
 
50
 
test.double       = 10.25
51
 
test.double.array = 20.35
52
 
test.double.array = 30.45
53
 
 
54
 
test.float       = 20.25
55
 
test.float.array = 30.35
56
 
test.float.array = 40.45
57
 
 
58
 
test.integer       = 10
59
 
test.integer.array = 20
60
 
test.integer.array = 30
61
 
 
62
 
test.long       = 1000000
63
 
test.long.array = 2000000
64
 
test.long.array = 3000000
65
 
 
66
 
test.short       = 1
67
 
test.short.array = 2
68
 
test.short.array = 3
69
 
 
70
 
test.overwrite = 1
71
 
 
72
 
#
73
 
# Test complex line ending escaping
74
 
#
75
 
 
76
 
test.path = C:\\path1\\
77
 
test.path = C:\\path2\\
78
 
test.path = C:\\path3\\\
79
 
complex\\test\\
80
 
 
81
 
#
82
 
# Test for the comment lines
83
 
#
84
 
 
85
 
#comment = this is not a property but a comment line starting with '#'
86
 
!comment = this is not a property but a comment line starting with '!'
87
 
 
88
 
#
89
 
# Tests for the key/value separators ('=', ':' or white space, escaped or not)
90
 
#
91
 
 
92
 
test.separator\=in.key = foo
93
 
test.separator\:in.key = bar
94
 
test.separator\ in.key = foo
95
 
test.separator\ in.key = bar
96
 
test.separator\ in.key = foo
97
 
 
98
 
test.separator.equal = foo
99
 
test.separator.colon : foo
100
 
test.separator.tab      foo
101
 
test.separator.formfeed foo
102
 
test.separator.whitespace foo
103
 
test.separator.no.space=foo
104
 
 
105
 
# Tests for backslash escaping in lists
106
 
test.share1 = \\\\\\\\share1a, \\\\\\\\share1b
107
 
test.share2 = \\\\share2a
108
 
test.share2 = \\\\share2b
109
 
test.share3 = \\\\\\\\share3a\\\\\\\\,\\\\\\\\share3b\\
110