io.elementals.pevatron
Owner: elementals.io
Static website accelerator
https://elementals.io/pevatron/
Sources: https://github.com/elementals-io/pevatron-gradle/
Version 1.0-alpha-8 (latest)
1.0-alpha-8
Created 02 July 2019.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Static website accelerator
Using the plugins DSL:
plugins {
id("io.elementals.pevatron") version "1.0-alpha-8"
}
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-8")
}
}
apply(plugin = "io.elementals.pevatron")
Using the plugins DSL:
plugins {
id "io.elementals.pevatron" version "1.0-alpha-8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.pevatron-gradle:pevatron-gradle:1.0-alpha-8"
}
}
apply plugin: "io.elementals.pevatron"