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-beta1

Created 06 January 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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.rewedigital.konversation:gradle-plugin:2.0.0-beta1")
  }
}

apply(plugin = "org.rewedigital.konversation")

Using the plugins DSL:

plugins {
  id "org.rewedigital.konversation" version "2.0.0-beta1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.rewedigital.konversation:gradle-plugin:2.0.0-beta1"
  }
}

apply plugin: "org.rewedigital.konversation"

Learn how to apply plugins to subprojects