io.vrap.rmf.codegen-plugin
所有者: BENIASAAD Achraf
这是一个针对 ramle 规范的代码生成器,此版本支持的编程语言为 Java
源代码:https://github.com/vrapio/rmf-codegen/tree/master/codegen-gradle-plugin
使用 插件 DSL
plugins {
id("io.vrap.rmf.codegen-plugin") version "0.000000002"
}
使用 原有插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.vrap.rmf.codegen:codegen-gradle-plugin:0.000000002")
}
}
apply(plugin = "io.vrap.rmf.codegen-plugin")
使用 插件 DSL
plugins {
id "io.vrap.rmf.codegen-plugin" version "0.000000002"
}
使用 原有插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.vrap.rmf.codegen:codegen-gradle-plugin:0.000000002"
}
}
apply plugin: "io.vrap.rmf.codegen-plugin"