区分大小写的包上的 Maven + plexus + eclipse 编译器中可能存在错误?

Posted

技术标签:

【中文标题】区分大小写的包上的 Maven + plexus + eclipse 编译器中可能存在错误?【英文标题】:possible bug in Maven + plexus + eclipse compiler on case sensitive packages? 【发布时间】:2013-07-16 18:38:02 【问题描述】:

我在使用 Maven 和 Eclipse 编译器时遇到了一个非常奇怪的问题。

在 Eclipse+m2eclipse 中,我使用以下单个类编译一个小项目(原型快速入门)没有问题。

package test.test;
import com.Ostermiller.util.CSVParser;
public class TestCaseSensitive 
    CSVParser csvParser;

Ostermiller 实用程序已添加到 pom.xml。 Eclipse Kepler 编译该项目。 接下来,mvn compile 开箱即用。

现在的问题是,我切换到编译器 3.1 并要求使用 Eclipse 编译器(以便能够在控制台模式和 IDE 模式下处理相同的编译问题)。这是 POM:

<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>test</groupId>
<artifactId>test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>test</name>
<url>http://maven.apache.org</url>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.ostermiller</groupId>
        <artifactId>utils</artifactId>
        <version>1.07.00</version>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <compilerId>eclipse</compilerId>
                <source>1.7</source>
                <target>1.7</target>
                <optimize>true</optimize>
                <showWarnings>true</showWarnings>
                <showDeprecation>true</showDeprecation>
                <fork>false</fork>
                <compilerArgument>-err:nullAnnot,null</compilerArgument>
            </configuration>
            <dependencies>
                <dependency>
                    <groupId>org.codehaus.plexus</groupId>
                    <artifactId>plexus-compiler-eclipse</artifactId>
                    <version>2.2</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

现在是结果:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project test: Compilation failure: Compilation failure:
[ERROR] /home/me/workspaces/4/3/ws/test/src/main/java/test/test/TestCaseSensitive.java:[3] The import com.Ostermiller cannot be resolved
[ERROR] /home/me/workspaces/4/3/ws/test/src/main/java/test/test/TestCaseSensitive.java:[7] CSVParser cannot be resolved to a type

com.Ostermiller 包存在(它在 Maven 默认编译器中也可以在 Eclipse IDE 中编译),但在切换到 Eclipse 编译器后不存在。

请注意,报错路径也是错误的:

[ERROR] /home/me/workspaces/4/3/ws/test/src/main/java/...

应该是

[ERROR] /home/me/workspaces/4.3/ws/test/src/main/java/...

有人有想法吗?应该在哪里报告潜在的错误?

【问题讨论】:

我遇到了同样的问题,除了我的错误是:The import org.xbill.DNS cannot be resolved。正如我在mvn -X 看到的那样,它肯定在类路径中。我唯一可能看到的共同点是我们的两个导入包名称中都有大写字母。也许它有问题。 还有这个问题:***.com/questions/17749375 提问者遇到org.omg.CORBA.IntHolder 的问题。我认为大写是相关的。 【参考方案1】:

你试过使用tycho提供的jdt编译器吗?

见http://wiki.eclipse.org/Tycho/FAQ#Can_I_use_the_Tycho_compiler_support_in_non-OSGi_projects.2C_too.3F

这会给你:

<plugin>
  <!-- Use compiler plugin with tycho as the adapter to the JDT compiler. -->
  <artifactId>maven-compiler-plugin</artifactId>
  <configuration>
     <compilerId>jdt</compilerId>
     <source>1.7</source>
     <target>1.7</target>
     <optimize>true</optimize>
     <showWarnings>true</showWarnings>
     <showDeprecation>true</showDeprecation>
     <fork>false</fork>
     <compilerArgument>-err:nullAnnot,null</compilerArgument>
  </configuration>
  <dependencies>
     <!-- This dependency provides the implementation of compiler "jdt": -->
     <dependency>
       <groupId>org.eclipse.tycho</groupId>
       <artifactId>tycho-compiler-jdt</artifactId>
       <version>$tycho-version</version>
     </dependency>
   </dependencies>
</plugin>

目前 tycho-version=0.18.0

【讨论】:

是的,我做到了,但是与 maven-compiler-plugin(Maven 3.1,Tycho 0.18.0)存在不兼容性。我还尝试了从 18 到 14 的所有 tycho 版本(我不再有堆栈跟踪)。 Maven 抱怨 tycho 未实现的方法:API 缺失方法...显然,错误和警告存在从 Tycho 转移到 Maven 的问题。 tycho 0.18.1,兼容maven 3.1.0,现已推出

以上是关于区分大小写的包上的 Maven + plexus + eclipse 编译器中可能存在错误?的主要内容,如果未能解决你的问题,请参考以下文章

安装maven 错误: 找不到或无法加载主类 org.codehaus.plexus.classworlds.launcher.Launcher

plexus 注释是不是在 Maven 插件中工作?

Maven 版本/scm 标签/Plexus DirectoryScanner 中的无限递归错误?

Maven 错误:无法找到或加载主类 org.codehaus.plexus.classworlds.launcher.Launcher

Maven--java.lang.NoClassDefFoundError: org/codehaus/plexus/compiler/util/scan/InclusionScanException

在 Maven 配置文件中使用带有 plexus-compiler-eclipse 插件的 JAXB