Search Gradle plugins

Version 0.1.1 (latest)

0.1.1

Created 25 January 2016.

A gradle plugin for creating Viewreka bundles (aka vbundles).

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.beryx.viewreka.bundle") version "0.1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.beryx.viewreka:viewreka-bundle-gradle-plugin:0.1.1")
      }
    }
    
    apply(plugin = "org.beryx.viewreka.bundle")
  • Applying plugins to all subprojects .