io.elementals.pevatron
Owner: elementals.io
Static website accelerator
https://elementals.io/pevatron/
Sources: https://github.com/elementals-io/pevatron-gradle/
Using the plugins DSL:
plugins {
id("io.elementals.pevatron") version "1.0-alpha-1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.pevatron-gradle:pevatron-gradle:1.0-alpha-1")
}
}
apply(plugin = "io.elementals.pevatron")
Using the plugins DSL:
plugins {
id "io.elementals.pevatron" version "1.0-alpha-1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.pevatron-gradle:pevatron-gradle:1.0-alpha-1"
}
}
apply plugin: "io.elementals.pevatron"