23 lines
300 B
Plaintext
23 lines
300 B
Plaintext
|
|
profiles {
|
|
test {
|
|
process {
|
|
withName:'FOO' {
|
|
ext {
|
|
foo = 'foo'
|
|
}
|
|
}
|
|
withName:'BAR' {
|
|
ext {
|
|
bar = 'bar'
|
|
}
|
|
}
|
|
withName:'DOES_NOT_MATCH_ANYTHING' {
|
|
ext {
|
|
test = 'test'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|