...
Given this groovy property file:
| Code Block | ||||
|---|---|---|---|---|
| ||||
Sample.groovy
sample {
foo = "default_foo"
bar = "default_bar"
}
environments {
development {
sample {
foo = "dev_foo"
}
}
test {
sample {
bar = "test_bar"
}
}
}
|
...