Search Gradle plugins

Version 0.6.0

0.6.0

Created 10 September 2024.

Embeds application manifest XML file in Compose Multiplatform desktop exe file

Using the plugins DSL:

plugins {
  id("ir.mahozad.compose-exe-manifest") version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ir.mahozad:plugin:0.6.0")
  }
}

apply(plugin = "ir.mahozad.compose-exe-manifest")

Using the plugins DSL:

plugins {
  id "ir.mahozad.compose-exe-manifest" version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ir.mahozad:plugin:0.6.0"
  }
}

apply plugin: "ir.mahozad.compose-exe-manifest"

Learn how to apply plugins to subprojects