Search Gradle plugins

io.ktor.plugin

Owner: KtorTeam

Provides the ability to package and containerize your Ktor application

https://ktor.io

Sources: https://github.com/ktorio/ktor

Version 2.3.0

Created 19 April 2023.

Provides the ability to package and containerize your Ktor application

Using the plugins DSL:

plugins {
  id("io.ktor.plugin") version "2.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.ktor.plugin:plugin:2.3.0")
  }
}

apply(plugin = "io.ktor.plugin")

Using the plugins DSL:

plugins {
  id "io.ktor.plugin" version "2.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.ktor.plugin:plugin:2.3.0"
  }
}

apply plugin: "io.ktor.plugin"

Learn how to apply plugins to subprojects