Where is Maven Installed on Ubuntu

后端 未结 6 877
借酒劲吻你
借酒劲吻你 2020-12-12 14:47

I installed maven on my Ubuntu machine with the command sudo apt-get install maven

Now I need to know where it is installed in order to configure the sa

6条回答
  •  感动是毒
    2020-12-12 15:10

    Ubuntu 11.10 doesn't have maven3 in repo.

    Follow below step to install maven3 on ubuntu 11.10

    sudo add-apt-repository ppa:natecarlson/maven3
    sudo apt-get update && sudo apt-get install maven3
    

    Open terminal: mvn3 -v

    if you want mvn as a binary then execute below script:

    sudo ln -s /usr/bin/mvn3 /usr/bin/mvn
    

    I hope this will help you.

    Thanks, Rajam

提交回复
热议问题