On Fri, Aug 10, 2012 at 12:46 AM, Reto Bachmann-Gmür <[email protected]> wrote: > I concluded this from the dependency > > <dependency> > <groupId>org.apache.wink</groupId> > <artifactId>wink-server</artifactId> > </dependency> > > In the pom of wink-webdav. However I now saw that it also compiles with > > <dependency> > <groupId>javax.ws.rs</groupId> > <artifactId>jsr311-api</artifactId> > </dependency> > > only the tests actually depend on the wink-server.
Hi Luciano, I'm not sure what I did last time but now it seems the actual implementation depends on wink. The file wink-webdav/src/main/java/org/apache/wink/webdav/server/WebDAVUtils.java Has the following imports: import org.apache.wink.server.internal.contexts.UriInfoImpl; import org.apache.wink.server.internal.registry.ResourceInstance; import org.apache.wink.server.internal.registry.ResourceRegistry; Could the implementation be changed not to depend on wink-server classes? Cheers, Reto
