I created some system properties in TC build configuration. The value of these properties are passed to a maven configuration this way:
clean test -Dargument1=%system.property1% -Dargument2=%system.property2%
And this works as expected. What I want to do now is to modify the value of the system properties when the build finish, so the next build will get these values. Is it possible to do that programmatically, through Java or using Maven? Is this the correct approach?