Reputation: 619
I'm in process to create/bundle native wrapper for my javaFX project. The project is running in the IDE e(fx)lipse. Using the IDE's build script generate feature I have generated the Ant build which I'm then using to build the app from IDE/command line.
The problem is whenever the build is generating the exe wrapper, the system antibirus(Symantec) is detecting that as a virus and deleting that. This is happening for the simple Hello World projects also. I tried the signing using a generated key also but the problem remained.
It is not possible to disable my antivirus since I'm working in my office machine and will not get corporate approval to do that.
Anyone faced similar issue? or know how to solve this?
Upvotes: 3
Views: 384
Reputation: 619
Turns out that the problem only existed if the ant build uses the JDK1.8.0_40 32bit version. Not sure what caused the error but I have tried with other versions like JDK1.8.0_5 32 bit, JDK1.8.0_25 32bit, JDK 1.8.0_45 32bit, JDK1.8.0_40 64bit and all of these versions worked flawless.
Upvotes: 1