In my Gradle/Maven build script there are a few jars that are not available for download from maven repository because they are not open source. (These jars were developed by some projects in my organization anymore that are not being worked on anymore).
My requirement is to add these jars to an Artifactory with group id, artifact id and version number. In this way when I point my repository to Artifactory in my build script, these jars can be pulled out.
I am looking for mvn-install kind of command for Artifactory.
I also found below question while researching : Deploying project JAR to artifactory programmatically but this does not specify group id, artifact id and version number that I need so that another project's Maven/Gradle build script can pull that jar from Artifactory.
The Artifactory is locally deployed in my system at the moment (later on it will be moved to a server).