Pom.xml dependency writing method in the actual project:
1 2 3 4 5 |
|
The command for Maven to install the JAR package is:
1 2 3 4 5 6 |
|
For example, my spring-context-support-3.1.0.RELEASE.jar file is placed in "D:\mvn\"
The command is (executed in cmd):
mvn install:install-file -Dfile=D:\mvn\spring-context-support- 3.1.0.RELEASE.jar
-DgroupId=org.springframework -DartifactId=spring-context-support -Dversion=3.1.0.RELEASE -Dpackaging=jar
Note: There should be no spaces or Chinese characters in the path and name. The command is on one line, do not wrap the line.
The above is the detailed content of How to install local jar package into maven repository. For more information, please follow other related articles on the PHP Chinese website!