Search Gradle plugins

io.purplejs.boot

This plugin provides build time integration for PurpleJS Boot applications.

http://purplejs.io/

Sources: https://github.com/purplejs/purplejs

Version 0.1.0

Created 24 August 2016.

This plugin provides build time integration for PurpleJS Boot applications.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "io.purplejs.boot"

Learn how to apply plugins to subprojects