Intellij Plugin Verifier Error: Package "org.jfree" is not found

Answered

Hi,

I'm currently in the process of publishing my IntelliJ plugin, but I've encountered an issue with the plugin verifier. The error message I received is as follows:

Package 'org.jfree' is not found along with its 6 classes. Probably the package 'org.jfree' belongs to a library or dependency that is not resolved by the checker. It is also possible, however, that this package was actually removed from a dependency causing the detected problems. Access to unresolved classes at runtime may lead to NoSuchClassError.

I've added the necessary dependencies in my build.gradle.kts file, as you can see below:

dependencies {
    implementation("org.jfree:jfreechart:1.5.4")
    implementation("org.jfree:jcommon:1.0.24")
}

I've double-checked that I'm using the latest versions for all dependencies. Despite this, I'm still getting the error message mentioned above.

Any insights or solutions would be greatly appreciated. Thank you in advance for your help!

Best regards, Niko

 

0
1 comment

Please inspect the resulting plugin distribution ZIP file from buildPlugin task whether it contains the library JAR files at all (it should unless you have any other customizations in your Gradle script).

1

Please sign in to leave a comment.