|
I am attempting to use deploy-file on a 3rd party .dll file.
mvn deploy:deploy-file -Durl=scp://server/var/www/maven_repo/external_free -DrepositoryId=external_free -Dfile=C:\myfile.dll -DgroupId=goup.name -DartifactId=artifact -Dversion=6.0 -DgeneratePom=true -Dpackaging=dotnet-library
The problem is I end up with files with an extension of dotnet-library in my remote repository. And I believe they should be .dll so they are recognized as artifacts when i try to "Add Maven Artifact" from visual studio. Can I perform
deploys with deploy-file? What command should I use to deploy the 3rd party assemblies to my repository?
|