I have a MSSQL db and need to add a driver for it as a maven dependency. In the Maven > Add Dependency dialog I was able to add spring jdbc but nothing will show up in the search for jstd.

I've tried adding:
Code:
<dependency>
    <groupId>net.sourceforge.jtds</groupId>
    <artifactId>jtds</artifactId>
    <version>1.2</version>
</dependency>
to my pom.xml file and I get this:
Could not transfer artifact net.sourceforge.jtds:jtdsom:1.2 from/to central (http://repo1.maven.org/maven2):
Permission denied
Any help would be great, fyi: I'm a complete maven noob.