Search Gradle plugins

Version 3.0.0

Created 03 January 2022.

Gradle plugin to enrich Planon app development.

Using the plugins DSL:

plugins {
  id("com.planonsoftware.app") version "3.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.planonsoftware:gradle.development.environment.plugin:3.0.0")
  }
}

apply(plugin = "com.planonsoftware.app")

Using the plugins DSL:

plugins {
  id "com.planonsoftware.app" version "3.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.planonsoftware:gradle.development.environment.plugin:3.0.0"
  }
}

apply plugin: "com.planonsoftware.app"

Learn how to apply plugins to subprojects