7

我遇到一个问题,当我通过 Intellij 15.0.2 的 Maven 构建运行时,Maven 资源插件没有将我的属性过滤到我的文件中。当我mvn compile从 Windows 命令行运行时,它确实有效。我的插件配置是:

<properties>
    <prop1>aaa</prop1>
    <prop2>bbb</prop2>
</properties>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<configuration>
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>file1</include>
                <include>file2</include>
            </includes>
            <filtering>true</filtering>
        </resource>
    </resources>
</configuration>
<executions>
    <execution>
        <phase>compile</phase>
        <goals>
            <goal>resources</goal>
        </goals>
    </execution>
</executions>
</plugin>
4

4 回答 4

10

修复

tldr:我能够重现您的问题,然后通过将<resources>元素从插件配置移出到直接下面来修复它,<build>如下所示:

<build>
    <resources>
        <resource>
            <filtering>true</filtering>
            <directory>${basedir}/src/main/resources</directory>
            <includes>
                <include>*</include>
            </includes>
        </resource>
    </resources>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
            <version>2.7</version>
            <executions>
                <execution>
                    <phase>compile</phase>
                    <goals>
                        <goal>resources</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <!-- <snip> Other plugins -->
    </plugins>
</build>

未来的读者,如果您只对修复感兴趣,请不要继续阅读。对于勇敢的 SO-er,下面有血淋淋的细节!

我为什么这样做?

我这样做是因为这就是我在以前的项目中打开资源过滤的方式。我不需要更改默认阶段 ( process-resources),因此根本不需要明确指定maven-resources-plugin。但是,我很想知道为什么 OP 的配置不起作用,因此查看了maven-resources-plugin文档resources中的mojo示例,这些示例似乎直接在.<resources><build>

使用文档中的措辞似乎暗示<resources>只有在插件配置下才需要对copy-resourcesmojo 进行配置:

在此处输入图像描述

更新

应该从 maven-resources-plugin介绍开始,其中明确指出:

resources:resources 将主源代码的资源复制到主输出目录。

这个目标通常会自动执行,因为它默认绑定到流程资源生命周期阶段。它总是使用 project.build.resources 元素来指定资源,并且默认使用 project.build.outputDirectory 来指定复制目标。



Intellij 的古怪之处?

我很想建议 Intellij 没有/没有过错。

mvn clean compile在 Intellij 15.0.2 中,从 Intellij 或从命令行执行时,过滤行为(即是否有效)是相同的。我会认为问题出在插件/pom 配置中,而不是 Intellij 本身,除非 Intellij 的 maven 集成中存在错误。对于它的价值,我在 Intellij 中使用 maven 时还没有遇到这个问题(现在从 12.x 版本开始使用了一段时间)。

您的 Intellij 是否使用了与命令行使用的 mvn 不同的捆绑 mvn?即在这里和从命令行看到的maven是一样的吗?这是我唯一能想到的,除了 Intellij 的 maven 集成中的一个错误(不太可能),它可能会解释您所看到的不同行为。

在此处输入图像描述

于 2015-12-18T11:35:09.147 回答
2

这是我的解决方案。

转到运行>编辑配置。

在“服务器”选项卡>“启动前”。

删除工件并添加此 maven 目标:clean compile

在此处输入图像描述

于 2018-04-19T18:26:08.777 回答
0

尝试添加${pom.basedir}<directory>标签的开头:

<build>
    (...)
    <testResources>
        <testResource>
            <filtering>true</filtering>
            <directory>src/main/resources</directory>
    </testResource>
    (...)
</build>

<build>
    (...)
    <testResources>
        <testResource>
            <filtering>true</filtering>
            <directory>${pom.basedir}/src/test/resources</directory>
        </testResource>
    </testResources>
    (...)
</build>

我怀疑当 Maven 项目有多个模块时,Intellij 有必要找到正确的资源文件来执行 pom.xml 属性的替换。

于 2020-10-06T17:24:33.213 回答
0

对我来说,问题是我忘记配置 Intellij 以将构建委托给 mvn。

委托给 mvn

此处的文档中提供了更多详细信息:https ://www.jetbrains.com/help/idea/delegate-build-and-run-actions-to-maven.html#delegate_to_maven 。

我怀疑 Intellij 只将 src/main/resources 复制到目标/类,没有别的。

于 2022-01-05T19:54:49.810 回答