adding jars to maven pom
normally you dont need this but sometime you may need to work with some special products like weblogic. and you may just need to add a dependincy from already installed weblogic.
<dependency>
<groupId>weblogic</groupId>
<artifactId>weblogic</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>C:\wl12\wlserver\modules\features\weblogic.server.merged.jar</systemPath>
</dependency>
this is working in windows as you guess :)