How to handle custom jars via svn in maven

In my project, I mean my own files jar

and some third party ones jars

. They are all stored in a folder ProjectLibrary

. Then I want to distribute them through svn

. Can anyone help me deal with these library dependencies via maven

? Is it better to use a remote repository? I want to use these dependencies without looking for any other frameworks.

+3


source to share


1 answer


you should host a link repository to store your own artifacts and let maven talk to it to load your own libraries (as well as third party libraries).



+1


source







All Articles