Search Gradle plugins

org.rewedigital.konversation

Konversation is a tool to generate rich and diversified responses to the user of voice applications. This gradle plugin will compile your ksv files to kson files and add it to your resource for the runtime library.

https://rewe-digital.github.io/Konversation

Sources: https://github.com/rewe-digital-incubator/Konversation

Version 2.0.0-beta3 (latest)

Created 30 March 2020.

Konversation is a tool to generate rich and diversified responses to the user of voice applications. This gradle plugin will compile your ksv files to kson files and add it to your resource for the runtime library.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.rewedigital.konversation") version "2.0.0-beta3"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.rewedigital.konversation:org.rewedigital.konversation.gradle.plugin:2.0.0-beta3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.rewedigital.konversation")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.rewedigital.konversation:org.rewedigital.konversation.gradle.plugin:2.0.0-beta3")
      }
    }
    
    apply(plugin = "org.rewedigital.konversation")
  • Applying plugins to all subprojects .