windows-service-plugin icon indicating copy to clipboard operation
windows-service-plugin copied to clipboard

Gradle plugin for wrapping java application as a windows service.

Results 7 windows-service-plugin issues
Sort by recently updated
recently updated
newest added

Hi, thank you for developing this plugin. This plugin is sadly no longer compatible with gradle 7, e.g. `JavaPlugin.RUNTIME_CONFIGURATION_NAME` in [WindowsServicePluginTask.groovy(L62)](https://github.com/alexeylisyutenko/windows-service-plugin/blob/master/src/main/groovy/com/github/alexeylisyutenko/windowsserviceplugin/WindowsServicePluginTask.groovy#L62) no longer exists. May I ask you to [choose...

I recreated you setup from the README page, but I get the following behaviour that prevents the service from starting. The service is correctly registered by the OS, in the...

In my `settings.gradle.kts` file the repositories are controlled via `dependencyResolutionManagement.repositories`, i.e. `project.repositories` is empty when applying the plugin. How can I avoid adding the `mavenCentral()` repository in this case, as...

This PR fixes issue #4 which, for example, causes problems for services executed from `C:\Program Files`. (note the space!) The corresponding test is also provided, and the existing tests have...

Service log error `Missing service ImageFile`

## Current Behaviour `%APP_HOME%lib\ojdbc7-12.1.0.2.jar;%APP_HOME%lib\ojdbc7-12.1.0.2.jar` ## Expected Behaviour `"%APP_HOME%lib\ojdbc7-12.1.0.2.jar;%APP_HOME%lib\ojdbc7-12.1.0.2.jar"` ### Windows Default Installation Directory `C:\Program Files (x86)` The Space is the problem in an default installation. The Classpath is not properly...

Hi, I'm trying to use to use your plugin to make a service out of my javafx application, but I'm encountering a NoClassDefFoundException error. Here's my architecure ![application organisation](https://user-images.githubusercontent.com/6436351/41396975-374f5512-6fe5-11e8-8720-0fbf382592d5.PNG). My...