我正在为项目创建一个安装程序,并希望在检查项目后将现有的maven项目导入到我的eclipse工作区。
我将尽快得到任何帮助。
谢谢大家!
答案 0 :(得分:1)
我自动设置eclipse,包括导入现有的maven项目。
首先运行mvn eclipse:项目上的eclipse
mvn eclipse:eclipse:
接下来抓住一个eclipse插件,将项目无头导入工作区:
wget https://github.com/snowch/test.myapp/raw/master/test.myapp_1.0.0.jar
将上面的jar复制到/eclipse/dropins/
文件夹。
接下来找到所有可导入eclipse的目录,并附加'-import'
IMPORTS=$(find . -type f -name .project)
# Although it is possible to import multiple directories with one
# invocation of the test.myapp.App, this fails if one of the imports
# was not successful. Using a for loop is slower, but more robust
for item in ${IMPORTS[*]};
do
IMPORT="$(dirname $item)/"
echo "Importing ${IMPORT}"
# perform the import using the test.myapp_1.0.0.jar
eclipse -nosplash \
-application test.myapp.App \
-data $WORKSPACE \
-import $IMPORT
done
最后,将M2_REPO变量添加到工作区
mvn eclipse:configure-workspace