Loading
gradle: add udev to the JNA library path
Running `gradle build --scan` results in this warning:
Did not find udev library in operating system.
Some features may not work.
The udev library is looked up using JNA, which searches
`jna.library.path` in addition to the standard locations. Adding
`udev` to the lookup path in the wrapper ensures that Gradle can find
the library.
Fixes: #358166.