I'm not quite sure what you are trying to do. But jars in the lib folder usually are just used to have access to jar files that cannot be accessed through maven. If you add a jar to the lib folder, you can then reference it in the gradle build file, and after building it, the classes should be available.
However, the lib folder is not recognized as a resource or source folder, so of course the contents are not taken into account for the build of the project itself.
Hi @21310122!
I'm not quite sure what you are trying to do. But jars in the lib folder usually are just used to have access to jar files that cannot be accessed through maven. If you add a jar to the lib folder, you can then reference it in the gradle build file, and after building it, the classes should be available.
However, the lib folder is not recognized as a resource or source folder, so of course the contents are not taken into account for the build of the project itself.
Cheers
Jan