blob: b3463131cb86c5e447f30c94a177cb5183d55513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
This directory contains a number of Maven projects each in a seperate subdirectory.
To build a number of projects using a single Maven command, cd to 00-build-all directory and run the following command:
mvn clean install
00-build-all itself is a Maven project that uses what is known as Maven react build to build a number of Maven projects. Look at the pom.xml file inside that directory to figure out which projects are mentioned to be build.
The "install" goal will install each Maven artifact in local Maven respository so that such locally installed artifacts can be used in other local Maven projects.
00-config is a Maven project which contains only the pom.xml file. It is being inherited in a number of other Maven projects. The "<parent>" tag in the pom.xml file of other Maven projects is used to specify the parent pom.xml file.
|