com.github.alexeylisyutenko.windows-service-plugin
Owner: Alexey Lisyutenko
Gradle plugin for wrapping java application as a windows service
https://github.com/alexeylisyutenko/windows-service-plugin
Sources: https://github.com/alexeylisyutenko/windows-service-plugin
Version 1.1.0 (latest)
1.1.0
Created 28 November 2017.
Gradle plugin for wrapping java application as a windows service
Using the plugins DSL:
plugins {
id("com.github.alexeylisyutenko.windows-service-plugin") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.alexeylisyutenko:windows-service-plugin:1.1.0")
}
}
apply(plugin = "com.github.alexeylisyutenko.windows-service-plugin")
Using the plugins DSL:
plugins {
id "com.github.alexeylisyutenko.windows-service-plugin" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.alexeylisyutenko:windows-service-plugin:1.1.0"
}
}
apply plugin: "com.github.alexeylisyutenko.windows-service-plugin"