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)

Created 18 February 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.ischca:compiler-plugin:0.0.4")
  }
}

apply(plugin = "io.github.ischca.compiler-plugin")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.ischca:compiler-plugin:0.0.4"
  }
}

apply plugin: "io.github.ischca.compiler-plugin"

Learn how to apply plugins to subprojects