I am new to Maven and I want to add SSJ library to dependencies in a maven project, I tried adding this in the POM.xml:
  <dependency>
        <groupId>ca.umontreal.iro</groupId>
        <artifactId>ssj</artifactId>
        <version>2.5</version>
        <scope>provided</scope>
    </dependency>
but eclipse is giving this error: Missing artifact ca.umontreal.iro:ssj-2.5
It seems that it's not found in the repository.. I have the jar file, how can I add it to dependencies? if possible. If not, what would be the alternative to include this jar in the project?
 
     
     
    