我正在尝试从Eclipse切换到Intellij,但我无法正确导入我的项目。这是一个庞大的OSGI项目,包含数十个捆绑包。 (免责声明:我是OSGI和Intellij noob。)
我设置了Intellij的OSGI支持,但在我点击“同步依赖项”之后,Intellij从我的.classpath文件中清除了一堆条目。这是一个例子:
删除的条目:
<classpathentry exported="true" kind="lib" path="lib/commons-math3-3.1.1.jar"/>
<classpathentry exported="true" kind="lib" path="lib/sigar.jar"/>
<classpathentry exported="true" kind="lib" path="lib/hsqldb-1.8.0.10.jar"/>
...etc. (All entries from classpath are deleted.)
添加了条目(仅添加了2个):
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<classpathentry kind="output" path="target/classes"/>