Search Gradle plugins

Version 0.2 (latest)

Created 24 June 2022.

Scala compiler plugin based on SBTs Zinc compiler

Using the plugins DSL:

plugins {
  id("com.github.bhuemer.gbt") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.bhuemer.gbt:gbt:0.2")
  }
}

apply(plugin = "com.github.bhuemer.gbt")

Using the plugins DSL:

plugins {
  id "com.github.bhuemer.gbt" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.bhuemer.gbt:gbt:0.2"
  }
}

apply plugin: "com.github.bhuemer.gbt"

Learn how to apply plugins to subprojects