com.github.vontikov.sbe-generator-plugin
所有者: 弗拉基米尔·奥蒂科夫
简易二进制编码插件
https://github.com/vontikov/sbe-gradle-plugin/
源代码: https://github.com/vontikov/sbe-gradle-plugin/
使用 插件DSL
plugins {
id("com.github.vontikov.sbe-generator-plugin") version "0.0.9"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.vontikov:sbe-generator-plugin:0.0.9")
}
}
apply(plugin = "com.github.vontikov.sbe-generator-plugin")
使用 插件DSL
plugins {
id "com.github.vontikov.sbe-generator-plugin" version "0.0.9"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.vontikov:sbe-generator-plugin:0.0.9"
}
}
apply plugin: "com.github.vontikov.sbe-generator-plugin"