Eclipse maven exports jar packages dependent on the project, eclipsemaven
1. Export to the default directory targed/dependency
Export the jar package of the Project dependency from the Maven project: Enter the directory where the project pom. xml is located and execute the following command:
1mvn dependency: copy-dependencies
In eclipse, select the pom. xml file of the project and right-click Run As in the menu. in the red box, in the pop-up Configuration window, enter dependency: copy-dependencies, and click Run.
The jar packages that maven projects depend on will be exported to the targed/dependency directory.
Ii. Export to a custom directory
Create the lib folder under maven, and enter the following command:
1mvn dependency: copy-dependencies-DoutputDirectory = lib
Jar packages that maven projects depend on will be copied to the lib directory under the project directory.
3. Set the dependency level
You can also set the dependency level. Generally, the compile level is used.
1mvn dependency: copy-dependencies-DoutputDirectory = lib-DincludeScope = compile