Distributed Java Compiler

前端 未结 5 1022
[愿得一人]
[愿得一人] 2021-02-07 06:52

Is there a distributed compiler for Java, analogous to distcc for C/C++?

5条回答
  •  萌比男神i
    2021-02-07 07:19

    I think the parallel compilation of independent Maven modules should be quite easy using some simple scripts - just pull from version control, change dir and run mvn clean compile. Add mvn deploy to get the artifact to your artifact repository.

    This should work even with dependent modules, will need some work on synchronization though.

提交回复
热议问题