Search Gradle plugins

io.vrap.rmf.codegen-plugin

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

http://www.vrap.io/

Sources: https://github.com/vrapio/rmf-codegen/tree/master/codegen-gradle-plugin

Version 0.1.0-20180711114716

0.1.0-20180711114716

Created 11 July 2018.

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("io.vrap.rmf.codegen-plugin") version "0.1.0-20180711114716"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.io.vrap.rmf.codegen:codegen-gradle-plugin:0.1.0-20180711114716")
      }
    }
    
    apply(plugin = "io.vrap.rmf.codegen-plugin")
  • Applying plugins to all subprojects .