在我的Maven多模块项目中(你可以查看here for other details),我已经为webapp模块启用了web.xml
过滤,这样我就可以在那里引用Maven属性。
我定义了:
<name />
元素。 [1]和[2]中的属性都在打包的web.xml
文件中正确扩展,但是父<name />
标记不是 - 如果我在webapp-module中声明该元素正确地扩大了。
我错过了什么吗?这是预期的行为吗?
以下是涉及的各种XML文件的相关部分。
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<display-name>shaker-multi-webapp webapp-value parent-value 1.0</display-name>
</web-app>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<display-name>${project.name} ${webapp.prop} ${par.prop} 1.0</display-name>
</web-app>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>sunshine.web</groupId>
<artifactId>shaker-multi</artifactId>
<version>0.0.1</version>
</parent>
<artifactId>shaker-multi-webapp</artifactId>
<packaging>war</packaging>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>sunshine.web</groupId>
<artifactId>shaker-multi</artifactId>
<version>0.0.1</version>
<packaging>pom</packaging>
<name>Shaker</name>
<modules>
<module>shaker-multi-core</module>
<module>shaker-multi-runnable</module>
<module>shaker-multi-webapp</module>
<module>shaker-multi-webapp-muserver</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<par.prop>parent-value</par.prop>
</properties>
答案 0 :(得分:2)
要获取在父POM中声明的名称,应使用${parent.name}
而不是${project.name}
,因为项目名称不会被继承(在Maven sources中查找更多详细信息)。
积分从#maven@irc.codehaus.org
转到 rfscholte 。