Search Gradle plugins

Version 0.1.0-beta1 (latest)

Created 13 August 2018.

Plugin to generate and verify raml with a spring mvc project.

Using the plugins DSL:

plugins {
  id("com.netfalo.raml") version "0.1.0-beta1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netfalo:gradle-raml-plugin:0.1.0-beta1")
  }
}

apply(plugin = "com.netfalo.raml")

Using the plugins DSL:

plugins {
  id "com.netfalo.raml" version "0.1.0-beta1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netfalo:gradle-raml-plugin:0.1.0-beta1"
  }
}

apply plugin: "com.netfalo.raml"

Learn how to apply plugins to subprojects