How to write a multiline default value in giter8?

139 views Asked by At

All parameters and their default values are fined in the default.properties file.

How can you have a parameter with a value that spans over multiple lines?

Example that works:

hello = world 

Example that doesn't work

hello = one 
two
1

There are 1 answers

4
marios On BEST ANSWER

Parameters can be written in the standard Java configuration style. So in the example above:

hello = one\ 
        two