org.rewedigital.konversation
Owner: René Kilczan
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 1.0-beta1
1.0-beta1
Created 18 February 2019.
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 "1.0-beta1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.rewedigital.konversation:gradle-plugin:1.0-beta1")
}
}
apply(plugin = "org.rewedigital.konversation")
Using the plugins DSL:
plugins {
id "org.rewedigital.konversation" version "1.0-beta1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.rewedigital.konversation:gradle-plugin:1.0-beta1"
}
}
apply plugin: "org.rewedigital.konversation"