com.github.rafael-brandao.scalabuff
Gradle插件,用于在Scala项目中使用Google Protocol Buffers。
https://github.com/rafael-brandao/scalabuff-gradle-plugin
使用 插件DSL
plugins {
id("com.github.rafael-brandao.scalabuff") version "0.2.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.rafael-brandao.gradle:scalabuff-gradle-plugin:0.2.0")
}
}
apply(plugin = "com.github.rafael-brandao.scalabuff")
使用 插件DSL
plugins {
id "com.github.rafael-brandao.scalabuff" version "0.2.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.rafael-brandao.gradle:scalabuff-gradle-plugin:0.2.0"
}
}
apply plugin: "com.github.rafael-brandao.scalabuff"