Search Gradle plugins

Version 0.1.35

Created 10 November 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 "0.1.35"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.commercetools.rmf:codegen-gradle-plugin:0.1.35")
  }
}

apply(plugin = "com.commercetools.rmf.codegen-plugin")

Using the plugins DSL:

plugins {
  id "com.commercetools.rmf.codegen-plugin" version "0.1.35"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.commercetools.rmf:codegen-gradle-plugin:0.1.35"
  }
}

apply plugin: "com.commercetools.rmf.codegen-plugin"

Learn how to apply plugins to subprojects