Я создал новый проект IntelliJ и хочу, чтобы у него были зависимости JAR, как у меня в другом проекте.
Есть ли способ экспортировать-импортировать / копировать-вставлять JAR-зависимости из одного проекта IntelliJ в другой без использования POM ?
Спасибо.
Дополнительное решение:
1. Open <old-project>/.idea/libraries folder and <new-project>/.idea/libraries folder.
2. Make sure to enable the displaying of hidden files (in Win7, go to control-panel--> Folder Options --> View, and select the 'Show hidden files...')
3. Copy all XML files exists in .idea/libraries from the old project to the new one.
4. Make sure that each xml points to the right location of Jar. (In case of relative link)
5. Open the <old-project>.iml and <new-project>.iml, and copy all <orderEntry type="library" name"..."/> elements.
6. Restart your new project.