0

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
marios
  • 8,874
  • 3
  • 38
  • 62

1 Answers1

0

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

hello = one\ 
        two
marios
  • 8,874
  • 3
  • 38
  • 62