Is the maven-native-plugin widely used to build C++ projects using maven?

前端 未结 2 733
无人及你
无人及你 2021-02-14 19:22

It\'s been a little while since I did C++ development professionally and I\'d like to get caught up on what the current state of C++ development is in a number of areas. Most o

2条回答
  •  温柔的废话
    2021-02-14 19:51

    Our experience with the maven native plugin is that it integrates very well with the Java tool chain. If you build mixed java/C++ systems, then it is the plugin for you. Because of this plugin, our C++ and Java developers have the same environment (maven, eclipse, hudson) and a centralized dependency management (nexus). On the negative side, several of our fixes (performance related due to the high volume of our code base, several millions lines of code) have not been integrated to the main release which oblige us to work with a patch version.

提交回复
热议问题