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
Version 0.0.7 (latest)
Created 11 May 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.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("garden.ephemeral.dsstore:dsstore-gradle-plugin:0.0.7")
}
}
apply(plugin = "garden.ephemeral.dsstore")
Using the plugins DSL:
plugins {
id "garden.ephemeral.dsstore" version "0.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "garden.ephemeral.dsstore:dsstore-gradle-plugin:0.0.7"
}
}
apply plugin: "garden.ephemeral.dsstore"