InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between the maven package and the maven install? |
|
Answer» PACKAGE: converts the compiled CODE into a distributable FORMAT, such as a JAR. install: adds the package to the local repository, allowing it to be USED as a dependency in other projects. |
|