Maven build is not filtering properties in Intellij

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:

enter image description here

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.

enter image description here


Thi was my solution.

Go to Run>Edit Configurations.

In the Server tab> Before launch.

Delete the artifact and add this maven goal: clean compile

enter image description here