hamburg.janove.elevator-music
Owner: Jan-Ove Weichel
Plugin that plays music while the build is running
https://github.com/Jan-Ove/ElevatorMusic
Sources: https://github.com/Jan-Ove/ElevatorMusic
Version 0.1 (latest)
0.1
Created 24 February 2021.
Plugin that plays music while the build is running
Using the plugins DSL:
plugins {
id("hamburg.janove.elevator-music") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("hamburg.janove:elevator-music:0.1")
}
}
apply(plugin = "hamburg.janove.elevator-music")
Using the plugins DSL:
plugins {
id "hamburg.janove.elevator-music" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "hamburg.janove:elevator-music:0.1"
}
}
apply plugin: "hamburg.janove.elevator-music"