Re: How to add local jar to Gradle

2023-01-10 Thread Scott Palmer
“The build file” is the “build.gradle” file that you would be editing to add this local dependency.  So if your .jar file was in the same folder with build.gradle, then you could just use: compile files(‘my_local.jar’)If it was in a subdirectory of your project you could use: compile files(‘project

Re: How to add local jar to Gradle

2023-01-08 Thread Laszlo Kishalmi
https://riptutorial.com/gradle/example/8349/add-a-local-jar-file-dependency On 1/7/23 19:41, Amn Ojee Uw wrote: Hello! Can anyone tell how to add a local jar file to a Gradle-Java with Gradle->Web Application using NetBeans 16? Thanks in advance. ---