JavaFX Maven Plug-in: No plugin found for prefix ‘jfx’ in the current project and in the plugin groups

You need to install your network ssl certificate to your jre cacerts.

Step 1 : Get certificate.

  1. Open https://repo.maven.apache.org URL using chrome browser.
  2. Click on view certificate
  3. select Top most certificate on chain and drag and drop to desktop.
    enter image description here

Step 2 : install certificate to cacerts

  1. open command prompt or terminal and type command

mvn -version

  1. Grab path to jre which would be shown to your after typing above command.
  2. Download this tool.
  3. select open option in that tool and navigate to that path which you grabbed at point 2. Now you are at jre folder. Open lib folder. Open security folder.(YOURMAVENJDKPATH/jre/lib/security/cacerts)
  4. Select cacerts file located in that security folder.Now you can see all the certificates in that tool. Tool would ask for password enter “changeit”(without double quote string changeit is the password)
  5. find out import certificate icon and click on it.
  6. Select the certificate which you downloaded in step 1.
  7. Save your changes and close the tool.

Now your problem is resolved.

Leave a Comment