搜索Gradle插件

版本 0.3.0 (最新)

0.3.0

创建于 2020年5月28日。

编译并压缩*.js文件

使用 插件DSL

plugins {
  id("com.leobia.gradle.jsgradlecompiler") version "0.3.0"
}

使用 旧插件应用

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

apply(plugin = "com.leobia.gradle.jsgradlecompiler")

使用 插件DSL

plugins {
  id "com.leobia.gradle.jsgradlecompiler" version "0.3.0"
}

使用 旧插件应用

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

apply plugin: "com.leobia.gradle.jsgradlecompiler"

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