Hi all,
Just in case anybody is trying to build Jersey from the source code.
Since we are approaching Jersey 2.0 version release cut, some Jersey dependencies
are temporarily not available in the central maven repository, and you need
to either use -Ppromoted option or add the following to your .m2/settings.xml file:
<profiles>
…
<profile>
<id>promoted.repo</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>promoted.repo</id>
<url>
https://maven.java.net/content/groups/promoted/</url>
</repository>
</repositories>
</profile>
</profiles>
The above is a temporary arrangement only.
Thanks for understanding,
~Jakub