Added the below plugin in the pom.xml
run the below command
default target/dependency
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<artifactId>maven-dependency-plugin</artifactId> | |
<executions> | |
<execution> | |
<phase>install</phase> | |
<goals> | |
<goal>copy-dependencies</goal> | |
</goals> | |
<configuration> | |
<outputDirectory>lib</outputDirectory> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> |
run the below command
mvn install dependency:copy-dependencies
default target/dependency
mvn dependency:copy-dependencies
0 comments:
Post a Comment