Trying to use a Project called simmetrics: http://sourceforge.net/projects/simmetrics/
Trying to add the project as a maven dependancy into the POM file as follows:
<dependency>
<groupId>net.sf.simmetrics</groupId>
<artifactId>simmetrics</artifactId>
<version>1.6.2</version>
</dependency>
I've also added the repository as follows:
<repository> <id>simmetrics.website</id>
<name>Simmetrics Website</name>
<url>http://sourceforge.net/projects/simmetrics/</url>
</repository>
Can anyone point me in the right direction, this seems rather silly.
Thanks for your time.
EDIT
Found it somewhere else, however I can't seem to access this either: https://dev-iesl.cs.umass.edu/nexus/content/groups/public/
<repository>
<id>IESL Releases</id>
<name>IESL Repo</name>
<url>https://dev-iesl.cs.umass.edu/nexus/content/groups/public</url>
</repository>
<dependency>
<groupId>uk.ac.shef.wit.simmetrics</groupId>
<artifactId>simmetrics</artifactId>
<version>1.6.2</version>
</dependency>
In case some one is wondering yes I'm using various other maven dependencies, never experienced this before though.