有Maven的含有這種配置管理的Eclipse插件:繼續插件
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>wonttellya</groupId>
<artifactId>wonttellya</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
...
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.10</version>
<configuration>
<pde>true</pde>
</configuration>
</plugin>
</plugins>
</build>
</project>
在控制檯我跑
C:\Users\user\git\wonttellya\mvn
eclipse:eclipse -Declipse.workspace=C:\Users\user\workspace2
...
Using Eclipse Workspace: C:\Users\user\workspace2
...
BUILD SUCCESS
如果我在工作區中打開Eclipse中沒有的項目。
[maven-eclipse-plugin]的意圖(https://maven.apache.org/plugins/maven -eclipse-plugin /)是通過命令行等來創建/更改/升級eclipse的配置。通常不需要配置pom。 – khmarbaise
@khmarbaise https://maven.apache.org/plugins/maven-eclipse-plugin/pde.html告訴我配置它 –
好的...沒有意識到這一點。 – khmarbaise