net.dreamshake.mstr-plugins
Owner: Paul Bailey
A plugin that helps you compile and package MicroStrategy Web custom plugins
https://github.com/mstr-automation
Sources: https://github.com/mstr-automation/gradle-mstr-plugins
Version 0.1.3 (latest)
0.1.3
Created 30 September 2019.
A plugin that helps you compile and package MicroStrategy Web custom plugins
Using the plugins DSL:
plugins {
id("net.dreamshake.mstr-plugins") version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.dreamshake.mstr-plugins:mstr-plugins:0.1.3")
}
}
apply(plugin = "net.dreamshake.mstr-plugins")
Using the plugins DSL:
plugins {
id "net.dreamshake.mstr-plugins" version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.dreamshake.mstr-plugins:mstr-plugins:0.1.3"
}
}
apply plugin: "net.dreamshake.mstr-plugins"