de.ethinking.escenic.engine
Owner: Simon Mieth
The Gradle escenic plugin provides dependency managment for the escenic CMS distribution.
https://github.com/oss-ethinking/gradle-escenic-plugin
Sources: https://github.com/oss-ethinking/gradle-escenic-plugin
Version 0.9.6 (latest)
0.9.6
Created 22 July 2021.
The Gradle escenic plugin provides dependency managment for the escenic CMS distribution.
Using the plugins DSL:
plugins {
id("de.ethinking.escenic.engine") version "0.9.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.ethinking.gradle:escenic-plugin:0.9.6")
}
}
apply(plugin = "de.ethinking.escenic.engine")
Using the plugins DSL:
plugins {
id "de.ethinking.escenic.engine" version "0.9.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.ethinking.gradle:escenic-plugin:0.9.6"
}
}
apply plugin: "de.ethinking.escenic.engine"