搜索Gradle插件

版本 0.0.3(最新版本)

0.0.3

创建于 2017年3月22日。

此插件版本将不再解决,因为JCenter成为永久重定向到Maven Central,因为它只使用在JCenter中发现的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Gradle插件,用于创建和管理项目文档网站。

使用插件DSL

plugins {
  id("com.stehno.gradle.site") version "0.0.3"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.stehno.gradle:site:0.0.3")
  }
}

apply(plugin = "com.stehno.gradle.site")

使用插件DSL

plugins {
  id "com.stehno.gradle.site" version "0.0.3"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.stehno.gradle:site:0.0.3"
  }
}

apply plugin: "com.stehno.gradle.site"

了解如何将插件应用到子项目