为什么maven插件不能与eclipse java编译器一起工作?

时间:2012-05-21 06:46:30

标签: eclipse maven pom.xml

我在eclipse中安装了m2eclipse插件。我在eclipse中有一个java项目。然后我将pom.xml添加到项目的根文件夹中。将我的项目转换为maven项目。现在问题出现了:我可以下载pom.xml中包含的jar,但是无法将其导入到我的java文件中。 总是在我的项目中遇到java编译错误。在包浏览器视图中,我可以看到maven依赖项。

我试过这个:maven clean,重启eclipse,项目干净。

这是我的pom.xml

<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>TomLabs</groupId>
    <artifactId>TomLabs</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>test</name>
    <description>Tom source code</description>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>javax.media</groupId>
            <artifactId>jmf</artifactId>
            <version>2.1.1e</version>
        </dependency>
    </dependencies>
</project>

1 个答案:

答案 0 :(得分:1)

在pom.xml中提到的jar文件的版本中,您尝试导入的软件包/类的一种可能性是不可用的。