Search Gradle plugins

garden.ephemeral.dsstore

Owner: Hakanai

Gradle plugin to create macOS .DS_Store files, primarily for putting inside DMGs

https://github.com/ephemeral-laboratories/dsstore-kotlin

Sources: https://github.com/ephemeral-laboratories/dsstore-kotlin

Version 0.0.9 (latest)

Created 27 June 2023.

Gradle plugin to create macOS .DS_Store files, primarily for putting inside DMGs

Add this plugin to your build using the plugins DSL:

plugins {
  id("garden.ephemeral.dsstore") version "0.0.9"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("garden.ephemeral.dsstore:garden.ephemeral.dsstore.gradle.plugin:0.0.9")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("garden.ephemeral.dsstore")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("garden.ephemeral.dsstore:garden.ephemeral.dsstore.gradle.plugin:0.0.9")
      }
    }
    
    apply(plugin = "garden.ephemeral.dsstore")
  • Applying plugins to all subprojects .