You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.
when you trying to execute mvn clean install on the root level of your project, i.e. in folder your-project/ for the first time, you will get an error said the parent pom cannot find.
To fix this, you need:
install the parent pom only
mvn clean install -N
Or
mvn clean install --non-recursive
-N,--non-recursive Do not recurse into sub-projects
jwenjian
changed the title
[From Instapaper] : Install parent POM without building Child modules
Install parent POM without building Child modules
Aug 7, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Install parent POM without building Child modules
Imagine you have a parent pom that has 2 child modules, structure as below:
when you trying to execute
mvn clean install
on the root level of your project, i.e. in folderyour-project/
for the first time, you will get an error said the parent pom cannot find.To fix this, you need:
Or
That's it! 👏
August 7, 2019 at 06:06PM
via Instapaper https://ift.tt/2YwjHXm
The text was updated successfully, but these errors were encountered: