Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 16 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 "1.0.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects