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.8.0 (latest)

Created 18 October 2016.

This plugin provides build time integration for PurpleJS Boot applications.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.purplejs.boot:io.purplejs.boot.gradle.plugin:0.8.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.purplejs.boot")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.purplejs.boot:io.purplejs.boot.gradle.plugin:0.8.0")
      }
    }
    
    apply(plugin = "io.purplejs.boot")
  • Applying plugins to all subprojects .