owners@jersey.java.net

building Jersey these days requires using -Ppromoted

From: Jakub Podlesak <jakub.podlesak_at_oracle.com>
Date: Fri, 3 May 2013 20:35:14 +0200

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