Search Gradle plugins

Version 6.4.1

Created 18 February 2022.

A Gradle plugin for automatically generating models with quicktype on build

Using the plugins DSL:

plugins {
  id("io.freefair.quicktype") version "6.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.freefair.gradle:quicktype-plugin:6.4.1")
  }
}

apply(plugin = "io.freefair.quicktype")

Using the plugins DSL:

plugins {
  id "io.freefair.quicktype" version "6.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.freefair.gradle:quicktype-plugin:6.4.1"
  }
}

apply plugin: "io.freefair.quicktype"

Learn how to apply plugins to subprojects