搜索 Gradle 插件

net.dreamshake.mstr-plugins

所有者: 保罗·贝利

一个帮助您编译和打包 MicroStrategy Web 自定义插件的插件

https://github.com/mstr-automation

源代码: https://github.com/mstr-automation/gradle-mstr-plugins

版本 0.1.3(最新版本)

0.1.3

创建于 2019 年 9 月 30 日。

一个帮助您编译和打包 MicroStrategy Web 自定义插件的插件

使用 插件 DSL

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

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.dreamshake.mstr-plugins:mstr-plugins:0.1.3")
  }
}

apply(plugin = "net.dreamshake.mstr-plugins")

使用 插件 DSL

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

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.dreamshake.mstr-plugins:mstr-plugins:0.1.3"
  }
}

apply plugin: "net.dreamshake.mstr-plugins"

了解如何将插件应用于子项目