sbtgiter8

How to write a multiline default value in giter8?


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

Solution

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

    hello = one\ 
            two