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 1.0.0
1.0.0
Created 16 September 2020.
Gradle plugin to enrich Planon app development.
Using the plugins DSL:
plugins {
id("com.planonsoftware.app") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.planonsoftware:gradle.development.environment.plugin:1.0.0")
}
}
apply(plugin = "com.planonsoftware.app")
Using the plugins DSL:
plugins {
id "com.planonsoftware.app" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.planonsoftware:gradle.development.environment.plugin:1.0.0"
}
}
apply plugin: "com.planonsoftware.app"