com.commercetools.rmf.codegen-plugin
Owner: Jens Schulze
This a code generator for the ramle specification, the supported language for this version is java
https://github.com/commercetools/rmf-codegen
Sources: https://github.com/commercetools/rmf-codegen/tree/main/tools/codegen-gradle-plugin
Version 1.0.0-20221027192341
1.0.0-20221027192341
Created 27 October 2022.
This a code generator for the ramle specification, the supported language for this version is java
Using the plugins DSL:
plugins {
id("com.commercetools.rmf.codegen-plugin") version "1.0.0-20221027192341"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.commercetools.rmf:codegen-gradle-plugin:1.0.0-20221027192341")
}
}
apply(plugin = "com.commercetools.rmf.codegen-plugin")
Using the plugins DSL:
plugins {
id "com.commercetools.rmf.codegen-plugin" version "1.0.0-20221027192341"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.commercetools.rmf:codegen-gradle-plugin:1.0.0-20221027192341"
}
}
apply plugin: "com.commercetools.rmf.codegen-plugin"