Search Gradle plugins

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.elementals.pevatron") version "1.0-alpha-8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.pevatron-gradle:pevatron-gradle:1.0-alpha-8")
      }
    }
    
    apply(plugin = "io.elementals.pevatron")
  • Applying plugins to all subprojects .