搜索Gradle插件

io.github.klahap.mccgen

所有者: Klaus Happacher

一个用于生成MCC(商户类别代码)Kotlin代码的插件

https://github.com/klahap/mccgen

源代码: https://github.com/klahap/mccgen.git

版本 1.0.0(最新版本)

1.0.0

创建于2024年6月24日。

一个用于生成MCC(商户类别代码)Kotlin代码的插件

使用插件 DSL

plugins {
  id("io.github.klahap.mccgen") version "1.0.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.klahap.mccgen:mccgen:1.0.0")
  }
}

apply(plugin = "io.github.klahap.mccgen")

使用插件 DSL

plugins {
  id "io.github.klahap.mccgen" version "1.0.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.klahap.mccgen:mccgen:1.0.0"
  }
}

apply plugin: "io.github.klahap.mccgen"

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