Every time there is an update, I would like to preserve the property in my property file if changed in the user side. However, if changed in the server side, it has to be updated/added/removed
Using same example, I would like this to happens ALWAYS:
1) property files v1.0
Result: number_of_threads = 10
2) User changes to 20
Result: number_of_threads = 20
3) release v1.1 with same property values as v1.0 (number_of_threads = 10)
Result: number_of_threads = 20
4) release v1.2 with same property values as v1.0 (number_of_threads = 10)
Result: number_of_threads = 20
The problem is that this didn't happen when it is not the following version. When I run the update from v1.0 to v1.2, the property changed to 10.