com.github.rmee.systemd-application
Owner: hallowelt
Build an rpm package integrating into systemd out of any java application
https://github.com/rmee/gradle-plugins/tree/master/systemd-application
Sources: https://github.com/rmee/gradle-plugins/tree/master/systemd-application
Version 1.1.20200614081240 (latest)
1.1.20200614081240
Created 14 June 2020.
Build an rpm package integrating into systemd out of any java application
Using the plugins DSL:
plugins {
id("com.github.rmee.systemd-application") version "1.1.20200614081240"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.rmee:systemd-application:1.1.20200614081240")
}
}
apply(plugin = "com.github.rmee.systemd-application")
Using the plugins DSL:
plugins {
id "com.github.rmee.systemd-application" version "1.1.20200614081240"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.rmee:systemd-application:1.1.20200614081240"
}
}
apply plugin: "com.github.rmee.systemd-application"