Search Gradle plugins

Version 0.7.0 (latest)

0.7.0

Created 25 August 2024.

Kotlin compiler plugin for generating object mappers

Using the plugins DSL:

plugins {
  id("tech.mappie.plugin") version "0.7.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("tech.mappie:gradle-plugin:0.7.0")
  }
}

apply(plugin = "tech.mappie.plugin")

Using the plugins DSL:

plugins {
  id "tech.mappie.plugin" version "0.7.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "tech.mappie:gradle-plugin:0.7.0"
  }
}

apply plugin: "tech.mappie.plugin"

Learn how to apply plugins to subprojects