hey everyone, as i can see ktor (server) comes wit...
# ktor
h
hey everyone, as i can see ktor (server) comes with shadowJar plugin preloaded for you, is there a way to control the versioning somehow or at least find out what version is used bundled in the Ktor modules?
a
I guess you can control the version through Gradle. You can see the plugin dependencies by executing the
buildEnvironment
Gradle task. Here is an example output:
Copy code
+--- io.ktor.plugin:io.ktor.plugin.gradle.plugin:3.3.0
|    \--- io.ktor.plugin:plugin:3.3.0
|         +--- com.gradleup.shadow:shadow-gradle-plugin:9.1.0
thank you color 1