1

我已经使用 maven 大约两年了,但我认为我并不完全了解 maven 中的配置文件,尤其是当我遇到以下问题时。

我有一个 maven 项目,包含三个模块,secweb-parent、secweb-service 和 secweb-web,secweb-sevice 依赖于 spring-webmvc,secweb-web 依赖于 secweb-service。

问题是 :

1)当我使用'mvn clean install -Dinclude'时,它运行良好,并且 spring-mvc.jar 将在 secweb-web.war 中找到

2)当我使用'mvn clean install -Pinclude-jar'时,它不起作用,并且在 secweb-web.war 中找不到 spring-mvc.jar

有人知道为什么吗?使用配置文件时有什么需要注意的吗?

(我知道我可以定义依赖范围,这里这个项目只是为了演示不同配置文件激活方法的不同结果)


secweb-parent 的 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>

    <properties>
        <project.version>1.0.0</project.version>
    </properties>

    <groupId>com.mediatek.dt</groupId>
    <artifactId>secweb-parent</artifactId>
    <version>${project.version}</version>
    <packaging>pom</packaging>

    <modules>
        <module>../secweb-web</module>
        <module>../secweb-service</module>
    </modules>
</project>

用于 secweb 服务的 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>

    <parent>
        <groupId>com.mediatek.dt</groupId>
        <artifactId>secweb-parent</artifactId>
        <version>${project.version}</version>
        <relativePath>../secweb-parent</relativePath>
    </parent>

    <artifactId>secweb-service</artifactId>

    <profiles>
        <profile>
            <id>include-jar</id>
            <activation>
                <property>
                    <name>include</name>
                </property>
            </activation>
            <dependencies>
                <dependency>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring-webmvc</artifactId>
                    <version>2.5</version>
                </dependency>
            </dependencies>
        </profile>
    </profiles>
</project>

用于 secweb-web 的 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>

    <parent>
        <groupId>com.mediatek.dt</groupId>
        <artifactId>secweb-parent</artifactId>
        <version>${project.version}</version>
        <relativePath>../secweb-parent</relativePath>
    </parent>

    <artifactId>secweb-web</artifactId>
    <packaging>war</packaging>

    <dependencies>
        <dependency>
            <groupId>com.mediatek.dt</groupId>
            <artifactId>secweb-service</artifactId>
            <version>${project.version}</version>
        </dependency>
    </dependencies>
</project>
4

1 回答 1

-1

您可以使用Maven 帮助插件检查活动配置文件,如下例所示

change directory to the parent
e.g. cd /my/project/secweb-parent
Then execute the following command twice for comparing

mvn help:help:active-profiles

mvn help:help:active-profiles -Pinclude-jar

无论如何,重要的一点是版本,您已定义为1.0.0。我宁愿使用1.0.0-SNAPSHOT代替。

您可以在此处查看有关 SNAPSHOT 的更多信息。

你为什么要用这个?SNAPSHOT 版本用于正在积极开发的项目。如果你的项目依赖于一个正在积极开发的软件组件,你可以依赖一个 SNAPSHOT 版本, 当你运行构建时,Maven 会定期尝试从存储库下载最新的快照。同样,如果您的系统的下一个版本将具有“1.4”版本,那么您的项目将具有“1.4-SNAPSHOT”版本,直到它正式发布。

作为默认设置,Maven 不会检查远程存储库上的 SNAPSHOT 版本。要依赖 SNAPSHOT 版本,用户必须明确启用使用 POM 中的存储库或 pluginRepository 元素下载快照的能力。

在我们的 stackoverflow 上还有一个关于快照的有用问题和答案,这里也是。

我希望这可能会有所帮助。

于 2013-03-05T08:00:48.663 回答