Create an executable FatJar in Gradle
Fat Jar is also know as uber jar which consists of all the classes along with the dependencies required to the run the application. Setup build.gradle Override the default JAR task By default jar task build jar without any dependencies, we will override the behavior of the jar task by adding a few lines of…
