搜索Gradle插件

版本 0.3.0 (最新)

0.3.0

创建于2017年4月28日。

Gradle插件,用于预览本地网页内容。

使用插件DSL

plugins {
  id("com.stehno.gradle.webpreview") version "0.3.0"
}

使用旧插件应用方式

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

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

使用插件DSL

plugins {
  id "com.stehno.gradle.webpreview" version "0.3.0"
}

使用旧插件应用方式

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

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

学习如何将插件应用到子项目