Hi folks, I ran into an issue of compile dependency conflict caused by same class name (javax.ws.rs.core.Response) with different method signatures in different artifacts (jsr311-api and javax.ws.rs-api). On one machine, it compiles because it compiles against javax.ws.rs-api; on another machine, it doesn't, because it compiles against jsr311-api.
So, I am wondering if the compile classpath deterministic? If not, can we make it deterministic so that it is easier to discover and debug dependency issues? Thanks! Dagang