com.github.alexeylisyutenko.windows-service-plugin
所有者: Alexey Lisyutenko
将Java应用程序包装为Windows服务的Gradle插件
https://github.com/alexeylisyutenko/windows-service-plugin
源代码: https://github.com/alexeylisyutenko/windows-service-plugin
使用插件DSL
plugins {
id("com.github.alexeylisyutenko.windows-service-plugin") version "1.1.0"
}
使用传统插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.alexeylisyutenko:windows-service-plugin:1.1.0")
}
}
apply(plugin = "com.github.alexeylisyutenko.windows-service-plugin")
使用插件DSL
plugins {
id "com.github.alexeylisyutenko.windows-service-plugin" version "1.1.0"
}
使用传统插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.alexeylisyutenko:windows-service-plugin:1.1.0"
}
}
apply plugin: "com.github.alexeylisyutenko.windows-service-plugin"