Search Gradle plugins

Version 3.1.2

Created 18 November 2021.

Arspell - resources spell checking plugin

Using the plugins DSL:

plugins {
  id("com.nikialeksey.arspell") version "3.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.nikialeksey:arspell-plugin-gradle:3.1.2")
  }
}

apply(plugin = "com.nikialeksey.arspell")

Using the plugins DSL:

plugins {
  id "com.nikialeksey.arspell" version "3.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.nikialeksey:arspell-plugin-gradle:3.1.2"
  }
}

apply plugin: "com.nikialeksey.arspell"

Learn how to apply plugins to subprojects