Re: Dead code detection

2020-09-15 Thread Oliver Rettig
Hi Mark, thanks for the link but this is not the code - not even an Netbeans plugin. But it is interesting to have a look into the source code. The code can be used by an ant-task, so maybe it is usable in the netbeans IDE. best regards Oliver > The code appears to be here: > > https://githu

Re: Dead code detection

2020-09-15 Thread Oliver Rettig
Hi Neil, thanks for the hint to LWJGL. Do you know where in the repository https://github.com/LWJGL the code for jative-jar building resides? I think it makes sense to evaluate other possibilities for us. We are often in the situation native-jars would be great. So we think about to create a

Re: Dead code detection

2020-09-15 Thread Neil C Smith
On Tue, 15 Sep 2020, 20:29 Oliver Rettig, wrote: > > In concrete we have a java library project which is a Wrapper to a c++ > native lib. To create a platform independent jar-file we want to add the > native code build for several operating systems into the the jar. > > > > We found that the > >

Re: Dead code detection

2020-09-15 Thread Mark Eggers
The code appears to be here: https://github.com/evernat/dead-code-detector I just found it with a little searching. I have no idea what state the code is in, how to create a plugin from it, or how it handles newer versions of Java. . . . just my two cents /mde/ On 9/15/2020 12:28 PM, Oliver Ret