This message was deleted.
# plugin-development
s
This message was deleted.
l
Hey Chris, Can you check with different 7.x versions? Trying to assess where this changed. Also, please open an issue and if you can add a reproducer, that would help a lot in tracking this down.
c
Thanks for reaching out Louis. We figured out what went wrong on our side. A crucial call was missed when porting to the new API and that caused the classpath to not include our additional jars.
Copy code
Directory libsDir = ...
classLoaderWorkerSpec.getClasspath().from(libsDir)
needed to be
Copy code
Directory libsDir = ...
classLoaderWorkerSpec.getClasspath().from(libsDir.getAsFileTree())
Sorry for the false alarm.
👍 1