3

我已经在 pom 类型的项目中声明了所有 spring 依赖项并安装了它。

我的项目使用公共依赖pom的pom如下。但似乎 maven 没有使用/无法找到依赖项 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>com.bookme</groupId>
    <artifactId>portal</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>war</packaging>

    <name>portal</name>

    <properties>
        <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.bookme.common</groupId>
            <artifactId>common-dependencies</artifactId>
            <version>1.0</version>
            <type>pom</type>
        </dependency>    
    </dependencies>
    </dependencyManagement>

    <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>
                    <compilerArguments>
                        <endorseddirs>${endorsed.dir}</endorseddirs>
                    </compilerArguments>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.6</version>
                <executions>
                    <execution>
                        <phase>validate</phase>
                        <goals>
                            <goal>copy</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${endorsed.dir}</outputDirectory>
                            <silent>true</silent>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>javax</groupId>
                                    <artifactId>javaee-endorsed-api</artifactId>
                                    <version>6.0</version>
                                    <type>jar</type>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

谁能告诉我我做错了什么?谢谢

4

1 回答 1

2
  1. 您是否已将依赖项 pom 安装到本地 m2 存储库?

  2. 添加scopeimport您的依赖项 pom.xml 中。看这里了解更多详情

<dependencyManagement>
<dependencies>
    <dependency>
        <groupId>com.bookme.common</groupId>
        <artifactId>common-dependencies</artifactId>
        <version>1.0</version>
        <type>pom</type>
        <scope>import</scope>
    </dependency>    
</dependencies>
</dependencyManagement>

还要考虑以下事实

  • 不要尝试导入在当前 pom 的子模块中定义的 pom。尝试这样做将导致构建失败,因为它无法找到 pom.xml 文件。

  • 永远不要将导入 pom 的 pom 声明为目标 pom 的父级(或祖父级等)。没有办法解决循环,并且会抛出异常。

  • 当引用其 pom 具有传递依赖项的工件时,项目将需要将这些工件的版本指定为托管依赖项。不这样做将导致构建失败,因为工件可能没有指定版本。(在任何情况下,这都应该被视为最佳实践,因为它可以防止工件的版本从一个构建更改为下一个构建)。

于 2013-02-28T10:34:33.170 回答