com.github.bhuemer.gbt
所有者: Bernhard Huemer
基于 SBT 的 Scala 编译器插件
https://github.com/bhuemer/gbt
来源: https://github.com/bhuemer/gbt
使用 plugins DSL
plugins {
id("com.github.bhuemer.gbt") version "0.2"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.bhuemer.gbt:gbt:0.2")
}
}
apply(plugin = "com.github.bhuemer.gbt")
使用 plugins DSL
plugins {
id "com.github.bhuemer.gbt" version "0.2"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.bhuemer.gbt:gbt:0.2"
}
}
apply plugin: "com.github.bhuemer.gbt"