轉載自https://blog.csdn.net/wabiaozia/article/details/52798194
以自己打的jar包myAlgorithm.jar為例:
1.找到本地的.m2倉庫
在根目錄C:\Users\user\.m2\localRepository\ 建立myAlgorithm檔案夾 ---->再建立myAlgorithm檔案夾----->再建立1.0檔案夾
将myAlgorithm.jar放入該檔案夾下
2.将myAlgorithm.jar更名為myAlgorithm-1.0.jar,同時建立myAlgorithm-1.0.pom,将以下内容寫至新建立的pom檔案中
<project>
<modelVersion>1.0.0</modelVersion>
<groupId>myAlgorithm</groupId>
<artifactId>myAlgorithm</artifactId>
<version>1.0</version>
</project>
3.在項目的pom.xml中引入依賴
<dependency>
<groupId>myAlgorithm</groupId>
<artifactId>myAlgorithm</artifactId>
<version>1.0</version>
</dependency>
4.滑鼠選中項目,右鍵點選,選擇Maven->Update Project...
5.在項目中正常使用jar包中的類,及其方法
boolean temp = MyAlgorithm.test();