hades
hades

Reputation: 4694

Upgrade Primefaces from 6.2 to 7.0.14 in Maven

In my project im using primefaces 6.2, in my pom.xml

<dependency>
  <groupId>org.primefaces</groupId>
  <artifactId>primefaces</artifactId>
  <version>6.2</version>
</dependency>

It has security issue with the jquery it is using, it is fixed in 7.0.14 so i wish to upgrade primefaces to 7.0.14, but in maven repository, i only see all the major versions:

enter image description here

How can i upgrade to 7.0.14 using maven?

Upvotes: 2

Views: 1439

Answers (1)

Melloware
Melloware

Reputation: 12029

PrimeFaces 7.0.14 is for Elite members only who pay a subscription of 99$ a year for support. They have access to the private release versions like 7.0.X.

On Maven Central are only the community versions 6.2, 7.0, 8.0 etc.

So you will need an Elite subscription to get this fix in 7.0.14 or 8.0.2.... or you will have to wait until PF 9.0 is released to get this fix.

Upvotes: 3

Related Questions