搜索Gradle插件

版本 0.1(最新版)

0.1

创建于 2017年3月5日。

JavaScript的Gradle插件

使用插件DSL

plugins {
  id("org.otherworlds.javascript") version "0.1"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.otherworlds:javascript:0.1")
  }
}

apply(plugin = "org.otherworlds.javascript")

使用插件DSL

plugins {
  id "org.otherworlds.javascript" version "0.1"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.otherworlds:javascript:0.1"
  }
}

apply plugin: "org.otherworlds.javascript"

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