Maven构建不会过滤Intellij中的属性 [英] Maven build is not filtering properties in Intellij

查看:147
本文介绍了Maven构建不会过滤Intellij中的属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

 < 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>资源< / goal>
< / goals>
< / execution>
< / executions>
< / plugin>


解决方案

修复





更新



应该以maven资源开始-plugin


I am having an issue where when I run by Maven build from Intellij 15.0.2 the Maven Resources Plugin is not filtering my properties into my files. It does work when I run mvn compile from the Windows command line. My plugin config is:

<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>

解决方案

The fix

tldr: I was able to reproduce your problem and then fixed it by moving out the <resources> element from the plugin configuration to directly under <build> like so:

<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>

Future readers, if you were only interested in the fix, read no further. For the intrepid SO-er, gory details await below!

Why did I do that?

I did the above since that is how I had turned on resource filtering in a previous project. I did not need to change the default phase (process-resources) and therefore did not need to explicitly specify the maven-resources-plugin at all. However, I was curious to find out why OP's configuration did not work and therefore looked at the examples for the resources mojo in maven-resources-plugin documentation which seemed to have the <resources> specified directly under <build>.

The wording in the Usage documentation seems to imply that the <resources> configuration is needed under plugin configuration only for the copy-resources mojo:

Update

Should have started with the maven-resources-plugin introduction which clearly states:

resources:resources copies the resources for the main source code to the main output directory.

This goal usually executes automatically, because it is bound by default to the process-resources life-cycle phase. It always uses the project.build.resources element to specify the resources, and by default uses the project.build.outputDirectory to specify the copy destination.



Intellij's weirdness?

I am tempted to suggest that Intellij is/was not at fault.

With Intellij 15.0.2, the filtering behaviour (i.e. whether it works or not) was identical when executing mvn clean compile from Intellij or from command line. I would've thought that the problem was in the plugin/pom configuration and not Intellij itself, unless there is a bug in Intellij's maven integration. For what's it worth, I have not yet encountered this problem when using maven from within Intellij (been using it for a while now starting from version 12.x).

Is your Intellij using a bundled mvn that is different from the mvn being used by the command line? i.e. is the maven same when seen here and from command line? That is the only thing I can think of, besides a bug in Intellij's maven integration (unlikely) that might account for the different behaviours that you are seeing.

这篇关于Maven构建不会过滤Intellij中的属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆