I am reorganizing 3 different implementations of a library in Java (built with Maven), C++ built with CMake and Python in a Git repository. One simplistic way is to simply have 3 top level directories Java, C++ and Python and put all code underneath it. An alternative is to use the Maven directory structure, that is, put Java code under src/main/java, c++ code under src/main/cpp, Python code under src/main/python. Similarly for tests (src/test/java etc.).
Are there any recommendations on how this should be done? Ideally, if you could point me to some open source project with Java, C++ and Python code, I could study how their codebase is organized. What would be good candidates?