使用maven构建java项目的问题2

时间:2011-11-18 12:45:07

标签: java eclipse maven

我正在使用maven2构建java项目,当我发出命令mvn clean install时,我收到错误could not parse error message: (use -source 5 or higher to enable generics)

在我的eclipse环境中,我使用的是jdk 1.7,项目运行正常。当我想构建项目时,我无法做到这一点,想想maven默认使用java版本1.3。

任何人请帮助我如何在maven中将jdk versio设置为1.7,以成功构建项目..

除了pom.xml中提到的jar我想添加我自己的jar,我怎么能在pom xml中指定呢?

提前致谢..

1 个答案:

答案 0 :(得分:4)

在你的pom.xml中配置maven-compiler-plugin使用1.6:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>
    </plugins>
</build>