We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi ! There is a bug in the method :
// org.pf4j.util.FileUtils line 216 public static Path getPath(Path path, String first, String... more) throws IOException { URI uri = path.toUri(); if (isJarFile(path)) { uri = URI.create("jar:file:" + path.toString()); } return getPath(uri, first, more); }
You must force "\" to "/" while doing path.toString() for Jar files.
path.toString()
The error is : Illegal character in opaque part at index 11: jar:file:D:\Dev\WorkingDir\projectName\plugins\plugin-pluginName.jar
The text was updated successfully, but these errors were encountered:
2bdcb6c
Use 2.1.0-SNAPSHOT.
2.1.0-SNAPSHOT
Sorry, something went wrong.
Thanks for your reactivity :) BUILD is a success TESTS are failing
No branches or pull requests
Hi !
There is a bug in the method :
You must force "\" to "/" while doing
path.toString()
for Jar files.The error is :
Illegal character in opaque part at index 11: jar:file:D:\Dev\WorkingDir\projectName\plugins\plugin-pluginName.jar
The text was updated successfully, but these errors were encountered: