I'm currently trying to deploy a third party jar and 2 dlls to a private artifactory.
I don't have the sources for any of these artifacts. I could install these artifacts manually trough mvn install:install-file
but I would have to manually do that every time the jar or dlls are updated.
I was trying to achieve a solution that allowed me to deploy with mvn deploy
.
I was thinking about creating a maven project with these 3 artifacts or a parent maven project with 3 child project as dependency. What is the best way to create a maven project in this case where I have no source to compile and put in a jar file?