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

Created 11 July 2018.

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

Using the plugins DSL:

plugins {
  id("io.vrap.rmf.codegen-plugin") version "0.1.0-20180711114716"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.vrap.rmf.codegen:codegen-gradle-plugin:0.1.0-20180711114716")
  }
}

apply(plugin = "io.vrap.rmf.codegen-plugin")

Using the plugins DSL:

plugins {
  id "io.vrap.rmf.codegen-plugin" version "0.1.0-20180711114716"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.vrap.rmf.codegen:codegen-gradle-plugin:0.1.0-20180711114716"
  }
}

apply plugin: "io.vrap.rmf.codegen-plugin"

Learn how to apply plugins to subprojects