com.planonsoftware.app
Owner: planonsoftware
Automate your app deployment process using the Planon app plugin
https://developer.planonsoftware.com
Sources: https://bitbucket.org/planonsoftware/gradle.development.environment.plugin/
Version 0.0.3
0.0.3
Created 21 December 2021.
Gradle plugin to enrich Planon app development.
Using the plugins DSL:
plugins {
id("com.planonsoftware.app") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.planonsoftware:gradle.development.environment.plugin:0.0.3")
}
}
apply(plugin = "com.planonsoftware.app")
Using the plugins DSL:
plugins {
id "com.planonsoftware.app" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.planonsoftware:gradle.development.environment.plugin:0.0.3"
}
}
apply plugin: "com.planonsoftware.app"