Search Gradle plugins

Version 0.1-SNAPSHOT

0.1-SNAPSHOT

Created 18 September 2019.

Scala compiler plugin based on SBT

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.bhuemer.gbt") version "0.1-SNAPSHOT"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.bhuemer.gbt:gbt:0.1-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.github.bhuemer.gbt")
  • Applying plugins to all subprojects .