Search Gradle plugins

net.dreamshake.mstr-plugins

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)

Created 30 September 2019.

A plugin that helps you compile and package MicroStrategy Web custom plugins

Add this plugin to your build using the plugins DSL:

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

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