Add a system maven dependency with a url instead of a file

TerryR

New Member
I need to depend on a jar which isn't in any maven repo. I currently just have a system dependency like this:\[code\]<dependency> <groupId>com.nexua</groupId> <artifactId>register</artifactId> <version>1.5</version> <scope>system</scope> <systemPath>${basedir}/lib/register.jar</systemPath></dependency>\[/code\]is there some way I can have the file link to a url instead of a local file so it will stay up to date?As it stands I'll have to replace the file manually when I want it updated.
 
Back
Top