Export maven project from eclipse

后端 未结 2 1053
暗喜
暗喜 2021-01-22 17:39

Is there a way to export an entire Maven project from eclipse? I don\'t just want a jar file, I\'m looking for a way that another person can download the entire project with the

相关标签:
2条回答
  • 2021-01-22 18:09

    If you export it as war file then you will not get back maven file. So it is better to just copy the project send it to other person, he/she just need to import as an exist project from path.

    0 讨论(0)
  • 2021-01-22 18:20

    Just copy the project folder and make the other person import it as an "Existing Eclipse project". If you want to collaborate with that person on it, think of using Git or some other CMS to share it.

    Maven will take care of getting the right dependencies.

    0 讨论(0)
提交回复
热议问题