Reputation: 563
I have Jenkins installed on a Windows Server.
I am trying to add the plugin Pathignore Plugin
which has a dependency on Ruby-runtime
.
When I tried to add Ruby-runtime
plugin, I've got the following error:
Caused by: java.nio.file.FileSystemException: C:\Program Files (x86)\Jenkins\plugins\ruby-runtime\WEB-INF\lib\classes.jar: The process cannot access the file because it is being used by another process.
Upvotes: 3
Views: 10189
Reputation: 528
It appears to be caused by a long file name bug, I had to relocate our Jenkins install to the root of the drive, it then "just works"
C:\Program Files (x86)\Jenkins
to C:\Jenkins
see bug report here for more information
Upvotes: 10