Search Gradle plugins

com.commercetools.rmf.codegen-plugin

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-20210625150639

1.0.0-20210625150639

Created 25 June 2021.

This a code generator for the ramle specification, the supported language for this version is java

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.commercetools.rmf.codegen-plugin") version "1.0.0-20210625150639"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.commercetools.rmf:codegen-gradle-plugin:1.0.0-20210625150639")
      }
    }
    
    apply(plugin = "com.commercetools.rmf.codegen-plugin")
  • Applying plugins to all subprojects .