com.github.bhuemer.gbt
Owner:
Bernhard Huemer
Scala compiler plugin based on SBT
https://github.com/bhuemer/gbt
Version 0.1-SNAPSHOT (latest)
Created 18 September 2019.
Scala compiler plugin based on SBT
Using the plugins DSL:
plugins {
id "com.github.bhuemer.gbt" version "0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.bhuemer.gbt:gbt:0.1-SNAPSHOT"
}
}
apply plugin: "com.github.bhuemer.gbt"
Using the plugins DSL:
plugins {
id("com.github.bhuemer.gbt") version "0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.bhuemer.gbt:gbt:0.1-SNAPSHOT")
}
}
apply(plugin = "com.github.bhuemer.gbt")