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