Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
mvn -N install
cd tooling
mvn install
cd..Dmaven.test.skip=true -Dprofile=step1
mvn -Dmaven.test.skip=true install-Dprofile=step2

Next time you build, you can just run

Code Block
mvn -Dmaven.test.skip=true install

Tip
titleBuilding 3.0-M1 amd 3.0-M2

Note that this only works for versions from 3.0-M3.
To build previous versions, just run
mvn -Dmaven.test.skip=true
from the root directory.

Using an IDE

If you prefer to use an IDE then you can autogenerate the IDE's project files using maven plugins. e.g.

...