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)
0.0.9
Created 27 June 2023.
Gradle plugin to create macOS .DS_Store files, primarily for putting inside DMGs
Using the plugins DSL:
plugins {
id("garden.ephemeral.dsstore") version "0.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("garden.ephemeral.dsstore:dsstore-gradle-plugin:0.0.9")
}
}
apply(plugin = "garden.ephemeral.dsstore")
Using the plugins DSL:
plugins {
id "garden.ephemeral.dsstore" version "0.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "garden.ephemeral.dsstore:dsstore-gradle-plugin:0.0.9"
}
}
apply plugin: "garden.ephemeral.dsstore"