jars are missing on `artifactory` server after installing primefaces all-themes

前端 未结 8 1134
无人共我
无人共我 2020-12-14 19:30

I am trying to follow http://primefaces.org/themes to get it working.

All community themes are also available in \"all-in-one\" package.



        
相关标签:
8条回答
  • 2020-12-14 19:38

    I had this issue a while ago. I simply downloaded the jar file from Maven and placed the jar file in the *.m2\repository\org\primefaces\themes\all-themes\1.0.10 directory. Then on Eclipse I run maven > update.

    0 讨论(0)
  • 2020-12-14 19:47

    Repository

    http://search.maven.org/#search|ga|1|g%3A%22org.primefaces.extensions%22

    or

    Custom

    Step 1 - http://jqueryui.com/themeroller/

    Step 2 - https://themeroller.osnode.com/themeroller/

    0 讨论(0)
  • 2020-12-14 19:48

    It seems repo is temporary broken, so you have to download it manualy.

    1. Download all dependencies from http://repository.primefaces.org/org/primefaces/themes/

    Here is how to do that: How to download HTTP directory with all files and sub-directories as they appear on the online files/folders list?

    wget -r -np -nH --cut-dirs=3 -R index.html http://repository.primefaces.org/org/primefaces/themes/
    
    1. Move it to your ~/.m2/repository/org/primefaces/themes dir
    2. Update local repository index img: NetBeans update index example
    0 讨论(0)
  • 2020-12-14 19:50

    The http://repository.primefaces.org redirects to secure https://repository.primefaces.org, but the the server's certificate can't be trusted based on Java's default trust store.

    You have two options:

    1. Add the "Let's Encrypt Authority X3" CA cert to the /lib/sercurity/cacerts. (The default password is: changeit)
    2. Ignore maven's certificate validation: How to tell Maven to disregard SSL errors (and trusting all certs)?
    0 讨论(0)
  • 2020-12-14 19:51

    Ubuntu have a problem with certificates, you have to add using this:

    apt-get install ca-certificates-java
    apt-get install ca-certificates
    
    0 讨论(0)
  • 2020-12-14 19:57

    Try:

    <dependency>
        <groupId>org.primefaces.extensions</groupId>
        <artifactId>all-themes</artifactId>
        <version>1.0.8</version>
    </dependency>
    

    I have tried with 1.0.10 but failed, 1.0.8 is ok!

    0 讨论(0)
提交回复
热议问题