通过maven引入第三方库文件时,需要在Pom.xml文件中添加如下所示的代码:
<dependencies>
<!-- https://mvnrepository.com/artifact/net.imagej/ij -->
<dependency>
<groupId>net.imagej</groupId>
<artifactId>ij</artifactId>
<version>1.52i</version>
</dependency>
</dependencies>
那么问题来了,<groupId><artifactId><version>我们是如何确定的呢?
访问maven的网站即可查询https://mvnrepository.com/
在其中输入你所查询的内容
选择你想下载的版本,copy下面的文字到pom.xml文件中即可