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

NoClassDefFoundException

Open Faz95210 opened this issue 6 years ago • 0 comments

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. 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.

Faz95210 avatar Jun 14 '18 07:06 Faz95210