Mvn clean install -DskipTests=true need 10 minutes

Is there any way can compile quickly?

Hi @flaming-archer,

Dremio is a relatively large piece of software, so it will take some time to build the entire product. 10 - 15 minutes is not unusual for a build time.

If you are only modifying a single module, you can just rebuild that module. The Maven syntax looks like:

mvn -pl <module name> clean install

If you are unfamiliar with Maven’s approach to modularity, this tutorial might be helpful: https://blog.jayway.com/2013/06/09/working-efficiently-with-maven-modules/

Thanks,i just want to justify whether is usual and if any improvement. When build single module ,i usually cd single module dir,then Mvn clean install -DskipTests.
I also try mvn mutl compile ,but failed.