org.beryx.viewreka.bundle
Owner:
Serban Iordache
A gradle plugin for creating Viewreka bundles (aka vbundles).
https://github.com/viewreka/viewreka-bundle-gradle-plugin
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"