Forgive me if this has been seen on the alias before and I missed it in archives.
I am using Paul's examples to create a WADL for my project:
http://wikis.sun.com/display/Jersey/HowToConfigureExtendedWADL
The one major difference I have in my configuration is that I have an artifactory local repository. However that local repository does contain all of the repositories listed in the pom in the WADL example code (m1, m2, glassfish).
However it looks like I have a transitive dependency issue coming from jersey-server. Jersey-server 1.1.5 depends on:
org.jboss.weld:weld-osgi-bundle:jar:1.0.0-CR1-SP1
which depends on:
javax.inject:javax.inject:jar:1.0-PFD-1
and
javassist:javassist:jar:3.11.0.GA
I've traced this back to the maven repos listed in the example pom (from the link above) and cannot find either of these two dependencies in any of the maven repos (m1, m2, glassfish) for their specified versions.
Is this an issue with using 1.1.5 jersey-server? I'd believe this was an issue with my artifactory caches but I can't find these jars in any of the specified repositories.
Thanks for any pointers.
Mike