我是 Maven 新手,我想将SSJ库添加到 Maven 项目中的依赖项中,我尝试在 POM.xml 中添加它:
<dependency>
<groupId>ca.umontreal.iro</groupId>
<artifactId>ssj</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
但是eclipse给出了这个错误:Missing artifact ca.umontreal.iro:ssj-2.5
似乎在存储库中找不到它。我有jar文件,如何将其添加到依赖项中?如果可能的话。如果没有,在项目中包含这个 jar 的替代方法是什么?