Reference to this post:
How to add referenced library JAR files using relative path for eclipse Java project in vscode
I need to convert this project to use a Build technology since the referenced external JAR libraries could not be pushed the the On-premise BitBucket Git repo. I was told that such libraries must be hosted on a central Project Antifactory based on JFrog (https://www.jfrog.com/), then reference them using the relevant build tool. I decided to use Maven since I am familiar with this tool.
I need your help as follows:
How to convert the existing project to use Maven?
How to change the reference to such JAR files from local to use the JFrog Artifactory?
How to ignore the
.class
,.jar
and other files not related to the source code, how I can ask git to ignore such files since they are now showing sUntraced
.
Tarek