com.github.mikanbako.gradle.sphinx
所有者: Keita Kita
Gradle用于Sphinx(http://sphinx-doc.org/)的插件
https://github.com/mikanbako/sphinx-gradle-plugin
来源:https://github.com/mikanbako/sphinx-gradle-plugin
使用 插件DSL
plugins {
id("com.github.mikanbako.gradle.sphinx") version "0.2.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.mikanbako.gradle.sphinx:sphinx-gradle-plugin:0.2.0")
}
}
apply(plugin = "com.github.mikanbako.gradle.sphinx")
使用 插件DSL
plugins {
id "com.github.mikanbako.gradle.sphinx" version "0.2.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.mikanbako.gradle.sphinx:sphinx-gradle-plugin:0.2.0"
}
}
apply plugin: "com.github.mikanbako.gradle.sphinx"