0

I'm developing a Java Web Application using Javaprimefaces. Now I have to insert a custom CSS theme. I'm following the tutorial at this URL, but I don't know where to put the .jar file.

It says in the classpath, but where is it or how I create it?

Etheryte
  • 24,589
  • 11
  • 71
  • 116
user3402649
  • 121
  • 1
  • 3
  • 15

1 Answers1

1

You can take a look at this question:

How to setup classpath in Netbeans?

It is shown how to add a JAR to Netbeans' classpath

enter image description here

UPDATE

In case you were creating a Maven Project, you don't need to add the JARs manually to it. Instead, you should add the needed dependencies to your POM file. Check the "Installation / Maven dependencies" section of the tutorial you are following.

Community
  • 1
  • 1
Genzotto
  • 1,954
  • 6
  • 26
  • 45