Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Do I Run "mvn install:install-file" in Intellij

In Netbeans, I can right click on a dependeny, and select "Manually install artifact", and it will run a maven install command like the one below:

mvn install:install-file -Dfile=AppMeasurement_SE.jar -DgroupId=com.omniture -DartifactId=AppMeasurement_SE -Dversion=1.2.4 -Dpackaging=jar

Does Intellij have a similar feature, or should I learn to love the Linux command line prompt?

like image 685
EdgeCase Avatar asked Nov 02 '22 10:11

EdgeCase


1 Answers

There is plugin intellij-maven for this.

"intellij-maven" is a maven project which can be used to create all of IntelliJ IDEA (Community version) build artifacts with maven and to install them into local maven repository.

like image 50
MariuszS Avatar answered Nov 14 '22 04:11

MariuszS