E (fx) clipse generated exe for javaFX project processed as a virus by system anti-virus

I am trying to create / merge a native wrapper for my javaFX project. The project works in the e (fx) lipse IDE. Using the IDE build script function, I created an Ant build, which I then use to build the application from the IDE / command line.

The problem is when the assembly generates the exe wrapper, the system antivirus (Symantec) detects it as a virus and removes it. This happens for simple Hello World projects . I tried signing using the generated key, but the problem persisted.

There is no way to disable my antivirus as I am working on my office machine and am not getting corporate permission to do so.

Has anyone faced a similar problem? or do you know how to solve this?

+3


source to share


1 answer


It turns out that the problem only existed if the ant build was using the 32-bit version of JDK1.8.0_40. Not sure what caused the error, but I tried other versions such as JDK1.8.0_5 32bit, JDK1.8.0_25 32bit, JDK 1.8.0_45 32bit, JDK1.8.0_40 64bit and all these versions worked flawlessly.



+1


source







All Articles