我正在针对CrEme VM库构建一个项目。我想配置 maven 和 eclipse,只针对这个 JAR 构建。但是m2eclipse“更新项目配置”会自动添加“JRE系统库”。我可以通过在 eclipse 项目类路径中删除它来修复它,但我只想在 pom.xml 中配置它(而不是检查 eclipse 设置)。
我试图这样做:
// ...
<dependency>
<groupId>ch.sbb.cis-infra.mobile</groupId>
<artifactId>vmclasses</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
// ...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.3</source>
<target>1.3</target>
<meminitial>128m</meminitial>
<maxmem>512m</maxmem>
<debug>off</debug>
<compilerArguments>
<bootclasspath>''</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
</plugins>
</build>
但是,m2eclipse 仍然添加了“JRE 系统库 [JRE_1.3]”。
在命令行上编译是正确的,但在 eclipse 中我看不到编译问题。 如何使用 pom.xml 配置在 Eclipse 中删除 JRE?
(Eclipse Helios SR2,m2e 插件 0.12.1)