I am trying to build a multiproject but I got some problems. I have a core project that contains things like dao and service classes, another project web depends on core. When I change something in my core project and I call: gradle clean install war, the web project doesn't get the new jar from the core project. I deploy to a local maven repro. I only get the new core jar if I delete the jar from the cradle cache. Before gradle I used ivy from ant and there I could fix it by specify a changing="true" attribute on the core dependency. Is there a way to get something simular with gradle?
Thanks
