net.dreamshake.mstr-war
Owner: Paul Bailey
A plugin that helps you re-package MicroStrategy Web/Library war files with your custom configuration
https://github.com/mstr-automation
Sources: https://github.com/mstr-automation/gradle-mstr-war
Version 0.1.20 (latest)
0.1.20
Created 28 February 2020.
A plugin that helps you re-package MicroStrategy Web/Library war files with your custom configuration
Using the plugins DSL:
plugins {
id("net.dreamshake.mstr-war") version "0.1.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.dreamshake.mstr-war:mstr-war:0.1.20")
}
}
apply(plugin = "net.dreamshake.mstr-war")
Using the plugins DSL:
plugins {
id "net.dreamshake.mstr-war" version "0.1.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.dreamshake.mstr-war:mstr-war:0.1.20"
}
}
apply plugin: "net.dreamshake.mstr-war"