windows-service-plugin
windows-service-plugin copied to clipboard
NoClassDefFoundException
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 .
My plugin configuration is like this :
windowsService {
architecture = 'amd64'
displayName = 'Display Name'
description = 'Description'
startClass = 'App'
startMethod = 'main'
startParams = 'start'
stopClass = 'App'
stopMethod = 'main'
stopParams = 'stop'
startup = 'auto'
}
I also try writing the classpath (fr.nconcepts.ecataxtractexec.app.App) as startClass and stopClass but the error stayed the same.
I'm using Java8.