Search Gradle plugins

net.dreamshake.mstr-war

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)

Created 28 February 2020.

A plugin that helps you re-package MicroStrategy Web/Library war files with your custom configuration

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.dreamshake.mstr-war") version "0.1.20"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("net.dreamshake.mstr-war:net.dreamshake.mstr-war.gradle.plugin:0.1.20")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("net.dreamshake.mstr-war")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.dreamshake.mstr-war:net.dreamshake.mstr-war.gradle.plugin:0.1.20")
      }
    }
    
    apply(plugin = "net.dreamshake.mstr-war")
  • Applying plugins to all subprojects .