com.github.honourednihilist.gradle-kafka-deserializers
Owner: honourednihilist
Gradle plugin to generate kafka deserializers for thrift classes
https://github.com/honourednihilist/gradle-kafka-deserializers
Sources: https://github.com/honourednihilist/gradle-kafka-deserializers
Version 0.1.0 (latest)
0.1.0
Created 23 July 2017.
Gradle plugin to generate kafka deserializers for thrift classes
Using the plugins DSL:
plugins {
id("com.github.honourednihilist.gradle-kafka-deserializers") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.honourednihilist:gradle-kafka-deserializers:0.1.0")
}
}
apply(plugin = "com.github.honourednihilist.gradle-kafka-deserializers")
Using the plugins DSL:
plugins {
id "com.github.honourednihilist.gradle-kafka-deserializers" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.honourednihilist:gradle-kafka-deserializers:0.1.0"
}
}
apply plugin: "com.github.honourednihilist.gradle-kafka-deserializers"