Maven 资源过滤未执行

Maven resource filtering not executed

我有一个包含以下行的 Dockerfile:

ENTRYPOINT ["java", "-Dconversion.rules.folder=/var/rules", "-jar", "/var/gateway-service-${project.version}.jar"]

我正在配置 maven-resources-plugin 如下:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-resources-plugin</artifactId>
    <version>3.1.0</version>
    <executions>
        <execution>
            <id>copy-docker-artifacts</id>
            <goals>
                <goal>copy-resources</goal>
            </goals>
            <phase>package</phase>
            <configuration>
                <resources>
                    <resource>
                        <directory>${project.build.directory}</directory>
                        <includes>
                            <include>${project.artifactId}.tar</include>
                        </includes>
                    </resource>
                    <resource>
                        <directory>${project.basedir}/src/main/docker</directory>
                        <filtering>true</filtering>
                    </resource>
                </resources>
                <outputDirectory>${project.build.directory}/docker</outputDirectory>
            </configuration>
        </execution>
    </executions>
</plugin>

如您所见,我期待 project.version 被替换。出于某种原因,这不是真的。然后我 运行 使用调试模式构建并输出以下内容:

[INFO] Copying 1 resource
[DEBUG] Copying file Dockerfile
[DEBUG] file Dockerfile has a filtered file extension
[DEBUG] filtering ...\src\main\docker\Dockerfile to ...\target\docker\Dockerfile
[DEBUG] no use filter components

在我看来过滤应该有效,但是 target 中的文件仍然包含 ${project.version}。我在这里错过了什么?

我也试过将其他非 Dockerfile 文件放入 Dockerfile 所在的同一文件夹中,但是那里也没有应用过滤...

您是否正在使用 Spring 作为父项目启动?

如果是这样,您的 Dockfile 中的值将使用 @key@

ENTRYPOINT ["java", 
"-Dconversion.rules.folder=/var/rules", 
"-jar", 
"/var/gateway-service-@project.version@.jar"]

Spring以这种方式启动