Search Gradle plugins

Version 1.0.8 (latest)

1.0.8

Created 17 August 2024.

Automatic MapStruct configuration

Using the plugins DSL:

plugins {
  id("com.github.akazver.mapstruct") version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.akazver.mapstruct:mapstruct-plugin:1.0.8")
  }
}

apply(plugin = "com.github.akazver.mapstruct")

Using the plugins DSL:

plugins {
  id "com.github.akazver.mapstruct" version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.akazver.mapstruct:mapstruct-plugin:1.0.8"
  }
}

apply plugin: "com.github.akazver.mapstruct"

Learn how to apply plugins to subprojects