I am setting up a new Artifactory Server.
I have a need where my Maven Java project should not have any dependency to a remote repository to get the related jar files configured in pom.xml. For example Spring Boot related files.
The project will pull all related jar files from the local repository manager (Artifactory). So if the internet is down or no outside connection is available all files can be pulled from the local Artifactory repo.
How can I add open source projects like Spring boot to my local Artifactory repo. I do not want to use Virtual repository which points to the external maven repo etc since I do not want any external dependency .
The goal is when I do my maven build all related jar files (for example Spring Boot) will be pulled form the local Artifactory repository.
Thanks.