I'm working on a project and I need slick-util, which doesn't have really good support or anything atm. The problem is that I am using a maven system and there is no maven repository. I was wondering if I should use something like:
<groupId>slick</groupId>
<artifactId>slick-util</artifactId>
<version>1.0</version>
<systemPath>http://whatever.com/slick/slick-util.jar</systempath>
<scope>system</scope>
I tried doing something like that, but IntelliJ Idea(my ide) says it cannot find the directory. Is there something I am doing wrong, or if this won't work, is there another method of accomplishing what I want?