Apache Maven FAQ – часто задаваемые вопросы по Apache Maven


Вопрос: Как форматируется SCM URL для Git?
Ответ:
  • scm:git:git://github.com/path_to_repository
  • scm:git:http://github.com/path_to_repository
  • scm:git:https://github.com/path_to_repository
  • scm:git:ssh://github.com/path_to_repository
  • scm:git:file://localhost/path_to_repository

Вопрос: Где искать dependencies на библиотеки?
Ответ: The Central Repository Search Engine

Вопрос: Как создать веб-проект?
Ответ: Maven War plugin - Usage

Вопрос: Как установить Maven на Ubuntu?
Ответ:
apt-cache search maven
sudo apt-get install maven2
mvn -version

...