jira-importer commented on issue #129: URL: https://github.com/apache/maven-war-plugin/issues/129#issuecomment-2967844436
**[Juan Miguel Bernal Gonzalez](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=juanmiguelbg)** commented I've the same issue. The problem is that the maven-filtering doesn't get the default base filter (declared in \<build> tag) of the project **pom.xml**. For a workaround, you have to add a **<filters>** tag in **<configuration>**, again: ``` <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.4</version> <configuration> ... <filters> <filter>${project.basedir}/src/main/filters/my-filter.properties</filter> </filters> </configuration> </plugin> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org