Computer scienceBackendKtorKtor Advanced

Deploying Ktor App (using ShadowJar plugin)

Adding shadowJar task to the configuration file

Report a typo

To start a JAR build with shadowJar you need to add the corresponding task to build.gradle.kts.

What lines should be added?
Put them in the correct order and set the indents.

Reorder lines using drag or arrows. Adjust indentation with left buttons
                manifest {
              
                }
              
                attributes(Pair("Main-Class", "com.example.ApplicationKt"))
              
                tasks{
              
                shadowJar {
              
                }
              
                }
              
___

Create a free account to access the full topic