I have a project I would like to build using multiple configurations. I have a constant that needs to be different between builds but I do not know how to change it based o
I would advise attempting to emulate Maven resource filtering and profile properties
..
@WebService(targetNamespace = "@WS_NAMESPACE@")
public class CustomerWebService {
..
..
..
Notes:
Each configuration has a different property file
src/properties/dev.properties
src/properties/qa.properties
src/properties/prod.properties
..
ant -Dprofile=qa ..