使用Maven 2编译Project时出现致命错误

时间:2013-08-14 04:14:52

标签: maven-2

我是Maven的新手,并开始将我的项目转移到maven。我创建了以下POM。 当我发出安装命令时,它给了我致命的错误。

我正在使用maven 2.2.1版本和JDK 1.5。

我的POM如下:

<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <prerequisites>
        <maven>2.2.1</maven>
    </prerequisites>
    <groupId>my.project.group</groupId>
    <artifactId>my.artifact</artifactId>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring</artifactId>
            <version>2.5.6.SEC01</version>
        </dependency>
    </dependencies>
</project>

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您缺少项目地址结构中的强制标记 groupId:artifactId:version

将以下标记放在...后面加上一些版本信息(即1.x.x)并尝试。

<version>1.0.0</version>

参考:http://maven.apache.org/pom.html