io.purplejs.boot
Owner: Sten Roger Sandvik
This plugin provides build time integration for PurpleJS Boot applications.
Sources: https://github.com/purplejs/purplejs
Version 0.6.0
0.6.0
Created 06 September 2016.
This plugin provides build time integration for PurpleJS Boot applications.
Using the plugins DSL:
plugins {
id("io.purplejs.boot") version "0.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.purplejs:purplejs-gradle:0.6.0")
}
}
apply(plugin = "io.purplejs.boot")
Using the plugins DSL:
plugins {
id "io.purplejs.boot" version "0.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.purplejs:purplejs-gradle:0.6.0"
}
}
apply plugin: "io.purplejs.boot"