您好,登錄后才能下訂單哦!
本篇文章為大家展示了在Maven本地庫中如何實現手動添加jar包,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
正常maven依賴jar包的pom.xml寫法如下:
<!-- https://mvnrepository.com/artifact/ojdbc/ojdbc --> <!-- (參數一):下載到本地的ojdbc-10.2.0.4.0.jar包的真實存放路徑 --> <dependency> <groupId>ojdbc</groupId>-----------------(參數二) <artifactId>ojdbc</artifactId>-----------(參數三) <version>10.2.0.4.0</version>------------(參數四) </dependency>
語法:
mvn install:install-file -Dfile=jar包的位置(參數一) -DgroupId=groupId(參數二) -DartifactId=artifactId(參數三) -Dversion=version(參數四) -Dpackaging=jar
注意必須在有pom文件的文件夾內執行才有效(項目內的pom文件目錄內也有效)
實例:mvn install:install-file -Dfile="C:\Users\zhaoyue\Desktop\commons\commons-io.jar" -DgroupId=org.apache.commons -DartifactId=commons-io -Dversion=2.6.0 -Dpackaging=jar
如果標簽多的話,如下:
<dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>2.2.0</version> <classifier>tests</classifier> </dependency>
就加一個-D參數就可以了,如下:
mvn install:install-file -Dfile=hadoop-hdfs-2.2.0-tests.jar -DgroupId=org.apache.hadoop -DartifactId=hadoop-hdfs -Dversion=2.2.0 -Dclassifier=tests -Dpackaging=jar
上述內容就是在Maven本地庫中如何實現手動添加jar包,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。