Search Gradle plugins

Version 0.1.3 (latest)

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"

Learn how to apply plugins to subprojects