cern.ais.datawarehouse.pentahopluginbuilder
所有者: Lukasz
促进创建Pentaho插件
来源: https://github.com/thejavatar/Pentaho-Plugin-Builder
版本 1.5 (最新版)
1.5
创建日期:2016年3月11日。
促进创建Pentaho插件
使用插件DSL
plugins {
id("cern.ais.datawarehouse.pentahopluginbuilder") version "1.5"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.cern-ais:cern-build-pentaho-plugin:1.5")
}
}
apply(plugin = "cern.ais.datawarehouse.pentahopluginbuilder")
使用插件DSL
plugins {
id "cern.ais.datawarehouse.pentahopluginbuilder" version "1.5"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.cern-ais:cern-build-pentaho-plugin:1.5"
}
}
apply plugin: "cern.ais.datawarehouse.pentahopluginbuilder"