io.vrap.rmf.codegen-plugin
Owner: BENIASAAD Achraf
This a code generator for the ramle specification, the supported language for this version is java
Sources: https://github.com/vrapio/rmf-codegen/tree/master/codegen-gradle-plugin
Version 0.000000002 (latest)
0.000000002
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.000000002"
}
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.000000002")
}
}
apply(plugin = "io.vrap.rmf.codegen-plugin")
Using the plugins DSL:
plugins {
id "io.vrap.rmf.codegen-plugin" version "0.000000002"
}
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.000000002"
}
}
apply plugin: "io.vrap.rmf.codegen-plugin"