How do I use shadow plugin in Gradle?
Gradle Shadow pluginOpen the build.gradle.kts file and add the plugin to the plugins block: plugins { id(“com.github.johnrengelman.shadow”) version “7.1.2” }Make sure that the main application class is configured: application { mainClass. set(“io.ktor.server.netty.EngineMain”) }