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 2.0.0-beta3 (latest)
2.0.0-beta3
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.
Using the plugins DSL:
plugins {
id("org.rewedigital.konversation") version "2.0.0-beta3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.rewedigital.konversation:gradle-plugin:2.0.0-beta3")
}
}
apply(plugin = "org.rewedigital.konversation")
Using the plugins DSL:
plugins {
id "org.rewedigital.konversation" version "2.0.0-beta3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.rewedigital.konversation:gradle-plugin:2.0.0-beta3"
}
}
apply plugin: "org.rewedigital.konversation"