On 17/09/2014 5:05 PM, Pavel Stehule wrote:
I don't think this is the case. There are tons of active open-source Java projects (more than C/C++).
Having worked on a project that with both C and Java bits, I think the major hurdle to overcome is the build and deployment system. Over the past couple of years, the dominant Java build/deployment system has become Maven. Maven does a terrible job of handling non-Java code. When I say terrible, I mean terrrrrible! It was so bad that I eventually gave up and dropped the project altogether.
Here is the problem description:
http://stackoverflow.com/q/4171222/14731 And as you can see, the Maven authors closed the bug report as Won't Fix (at which point I finally gave up)
If you can get over that hurdle, you should be able to get contributors by the dozens. I recommend using a mix of CMake and Apache Ant to build and only using Maven at the end to deploy.
Gili