io.ktor.plugin
Owner:
KtorTeam
Provides the ability to package and containerize your Ktor application
Version 2.2.2 (latest)
Created 04 January 2023.
Provides the ability to package and containerize your Ktor application
Using the plugins DSL:
plugins {
id "io.ktor.plugin" version "2.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.ktor.plugin:plugin:2.2.2"
}
}
apply plugin: "io.ktor.plugin"
Using the plugins DSL:
plugins {
id("io.ktor.plugin") version "2.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.ktor.plugin:plugin:2.2.2")
}
}
apply(plugin = "io.ktor.plugin")