net.dreamshake.gradle.microstrategy-plugin
Owner: Paul Bailey
Plugin to enable the automated build of MicroStrategy Web plugins
https://github.com/mstr-viz-helpers/microstrategy-gradle-plugin
Sources: https://github.com/mstr-viz-helpers/microstrategy-gradle-plugin.git
Version 0.1.1 (latest)
0.1.1
Created 31 July 2018.
Plugin to enable the automated build of MicroStrategy Web plugins
Using the plugins DSL:
plugins {
id("net.dreamshake.gradle.microstrategy-plugin") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.dreamshake.gradle.microstrategy-plugin:microstrategy-gradle-plugin:0.1.1")
}
}
apply(plugin = "net.dreamshake.gradle.microstrategy-plugin")
Using the plugins DSL:
plugins {
id "net.dreamshake.gradle.microstrategy-plugin" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.dreamshake.gradle.microstrategy-plugin:microstrategy-gradle-plugin:0.1.1"
}
}
apply plugin: "net.dreamshake.gradle.microstrategy-plugin"