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

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-20180711114851"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.vrap.rmf.codegen-plugin:io.vrap.rmf.codegen-plugin.gradle.plugin:0.1.0-20180711114851")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.vrap.rmf.codegen-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.vrap.rmf.codegen-plugin:io.vrap.rmf.codegen-plugin.gradle.plugin:0.1.0-20180711114851")
      }
    }
    
    apply(plugin = "io.vrap.rmf.codegen-plugin")
  • Applying plugins to all subprojects .