maven3 手動安裝本地jar到倉庫

安裝命令:apache

mvn install:install-file -Dfile={Path/to/your/ojdbc.jar} -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0 -Dpackaging=jar

本身安裝本身生成的jar包:


生成後的該jar包在maven倉庫中,自動生pom文件,pom文件內容爲:

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 
         xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  
  
   <modelVersion>4.0.0</modelVersion>   <groupId>www.myutile</groupId>    <artifactId>StringUtile</artifactId>   <version>11.2.0</version>   <description>POM was created from install:install-file</description> </project>
相關文章
相關標籤/搜索