Search Gradle plugins

io.github.ischca.compiler-plugin

A compiler plugin that provides checks to ensure that function calls are in scope at build time.

https://github.com/Ischca/InScope

Sources: https://github.com/Ischca/InScope

Version 0.0.4 (latest)

0.0.4

Created 18 February 2021.

A compiler plugin that provides checks to ensure that function calls are in scope at build time.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.ischca.compiler-plugin") version "0.0.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.ischca:compiler-plugin:0.0.4")
      }
    }
    
    apply(plugin = "io.github.ischca.compiler-plugin")
  • Applying plugins to all subprojects .