搜索Gradle插件

io.purplejs.boot

此插件为PurpleJS Boot应用程序提供构建时集成。

http://purplejs.io/

源代码: https://github.com/purplejs/purplejs

版本 0.8.0 (最新版)

0.8.0

创建于2016年10月18日。

此插件为PurpleJS Boot应用程序提供构建时集成。

使用插件DSL

plugins {
  id("io.purplejs.boot") version "0.8.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.purplejs:purplejs-gradle:0.8.0")
  }
}

apply(plugin = "io.purplejs.boot")

使用插件DSL

plugins {
  id "io.purplejs.boot" version "0.8.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.purplejs:purplejs-gradle:0.8.0"
  }
}

apply plugin: "io.purplejs.boot"

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