一夜的睡眠之後,這是我想出了答案:
我已經創建了一個空的Eclipse項目,並把我的*。產品文件中出現。爲了這個項目,我添加了一個* .target文件(新建>插件開發>目標定義)。在目標編輯器的定義選項卡上,我添加了自定義文件夾。
我的依賴罐子全部複製到使用Maven的依賴插件,文件夾:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>process-sources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${basedir}</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
一旦做到這一切完成後,我點擊「設置爲目標平臺」中的右上角鏈接目標編輯器。現在,我的所有Maven下載的Jars都可以在產品編輯器中看到。請注意,如果您更改您的Maven依賴關係,您可能需要刷新該項目。