Search Gradle plugins

Version 0.1

Created 30 December 2015.

Gradle plugin for Sphinx (http://sphinx-doc.org/)

Using the plugins DSL:

plugins {
  id("com.github.mikanbako.gradle.sphinx") version "0.1"
}

Using legacy plugin application:

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

apply(plugin = "com.github.mikanbako.gradle.sphinx")

Using the plugins DSL:

plugins {
  id "com.github.mikanbako.gradle.sphinx" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.mikanbako.gradle.sphinx:sphinx-gradle-plugin:0.1"
  }
}

apply plugin: "com.github.mikanbako.gradle.sphinx"

Learn how to apply plugins to subprojects