Search Gradle plugins

Version 0.1.1 (latest)

Created 25 January 2016.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.beryx.viewreka:viewreka-bundle-gradle-plugin:0.1.1")
  }
}

apply(plugin = "org.beryx.viewreka.bundle")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.beryx.viewreka:viewreka-bundle-gradle-plugin:0.1.1"
  }
}

apply plugin: "org.beryx.viewreka.bundle"

Learn how to apply plugins to subprojects