Search Gradle plugins

Version 0.1.1 (latest)

Created 15 December 2015.

Gradle plugin to inspect spelling using custom blacklist.

Using the plugins DSL:

plugins {
  id("com.github.ksoichiro.spelling") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.ksoichiro:gradle-spelling-plugin:0.1.1")
  }
}

apply(plugin = "com.github.ksoichiro.spelling")

Using the plugins DSL:

plugins {
  id "com.github.ksoichiro.spelling" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.ksoichiro:gradle-spelling-plugin:0.1.1"
  }
}

apply plugin: "com.github.ksoichiro.spelling"

Learn how to apply plugins to subprojects