I have maven project which contain two jars jersey-core-1.18.1
and jaxrs-api-3.0.1.Final
and both jar have Response.java class with inside same package javax.ws.rs.core.Response
Some places i want to use jersey-core-1.18.1
and some places i will want to use javax.ws.rs.core.Response
.
But eclipse showing only one import javax.ws.rs.core.Response
and this is referring to jersey-core-1.18.1
.
What changes i have to make so both jar file import will available?