Quarkus: installing MyFaces, PrimeFaces and OmniFaces - Maven dependencies not found (quarkiverse)
01:22 18 Mar 2026

I was using the command line tool to generate a REST-based basic project (the one with the GreetingResource).

Here the dependencies from the Maven pom.xml:


    
    
        io.quarkus
        quarkus-rest
    
    
        io.quarkus
        quarkus-rest-jackson
    
    
        io.quarkus
        quarkus-arc
    
    
        io.quarkus
        quarkus-agroal
    
    
        io.quarkus
        quarkus-hibernate-orm
    
    
        io.quarkus
        quarkus-hibernate-orm-panache
    
    
        io.quarkus
        quarkus-jdbc-postgresql
    
    
    
        io.quarkus
        quarkus-junit5
        test
    
    
        io.rest-assured
        rest-assured
        test
    

Now I am trying to install the Faces + PrimeFaces + OmniFaces extensions. The customer explicitly wants this for the prototype software...

So, this means adding the following dependencies to the pom.xml (I basically copied them from https://github.com/melloware/quarkus-faces/blob/main/pom.xml):



    org.apache.myfaces.core.extensions.quarkus
    myfaces-quarkus
    4.1.2


    io.quarkiverse.primefaces
    quarkus-primefaces
    4.1.2


    io.quarkiverse.omnifaces
    quarkus-omnifaces
    4.1.2

However, IntelliJ / Maven complains about not being able to find them:

Dependency 'org.apache.myfaces.core.extensions.quarkus' not found

enter image description here

Here's my .m2 settings.xml:



    
    
    
        
            jboss-public
            
                
                    google-maven-central
                    GCS Maven Central mirror EU
                    https://maven-central.storage-download.googleapis.com/maven2/
                    
                        true
                    
                    
                        false
                    
                
                
                    jitpack.io
                    https://jitpack.io
                
                
                    jboss-public-repository
                    JBoss Public Maven Repository Group
                    https://repository.jboss.org/nexus/content/groups/public/
                
            
        
    
    
    
        jboss-public
    
    

I thought this would be a fairly easy task to add Faces + PF + OF to the project.

I looked at many examples (I do not remember all the links, but they were many):

https://www.melloware.com/quarkus-faces-using-jsf-with-quarkus/

https://quarkus.io/extensions/org.apache.myfaces.core.extensions.quarkus/myfaces-quarkus/

and more. But they all fail to download the respective artifacts.

What am I missing?

java maven primefaces quarkus myfaces