com.cognifide.common.runtime
Owner: Krystian Panek
Introduces base lifecycle tasks (like 'up', 'down') for controlling runtimes (servers, applications)
https://github.com/wttech/gradle-common-plugin
Sources: https://github.com/Cognifide/gradle-common-plugin.git
Version 1.0.26
1.0.26
Created 14 April 2021.
Introduces base lifecycle tasks (like 'up', 'down') for controlling runtimes (servers, applications)
Using the plugins DSL:
plugins {
id("com.cognifide.common.runtime") version "1.0.26"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.cognifide.gradle:common-plugin:1.0.26")
}
}
apply(plugin = "com.cognifide.common.runtime")
Using the plugins DSL:
plugins {
id "com.cognifide.common.runtime" version "1.0.26"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.cognifide.gradle:common-plugin:1.0.26"
}
}
apply plugin: "com.cognifide.common.runtime"