1、將jar添加到本地倉庫的作法: 如下面pom.xml依賴的jar包爲例: 實際項目中pom.xml依賴寫法:html
dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>3.1.0.RELEASE</version> </dependency>
Maven 安裝 JAR 包的命令是:spring
mvn install:install-file -Dfile=jar包的位置 -DgroupId=上面的groupId -DartifactId=上面的artifactId -Dversion=上面的version -Dpackaging=jar
例如個人這個spring-context-support-3.1.0.RELEASE.jar 文件放在了"D:\mvn"中 則命令爲: 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 注意:任何路徑和名稱不要有中文和空格,以防出現莫名其妙的錯誤oracle
2、不講jar包添加到本地倉庫也可在maven工程中使用外部jar包的作法: 假設將包htmlparser.jar放入了項目下的lib目錄中 : -> ${project}/lib/htmlparser.jar 則pom.xml文件中依賴能夠以下:maven
<dependency> <groupId>com.htmlparser</groupId> <artifactId>htmlparser</artifactId> <version>2.0</version> <scope>system</scope> <systemPath>${project.basedir}/lib/htmlparser.jar</systemPath> </dependency>
mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.1.0 -Dpackaging=jar -Dfile=ojdbc6.jarcode