我设法找到问题的解决方案,但我想了解为什么我必须做我做过的事情,以及任何其他相关背景。
我正在开发一个生成OSGi包的Maven多项目构建,整个构建中有大约48个项目。
其中一些人有一个" src / main / resources / features.xml"文件,以及" build-helper-plugin"引用" attach-artifact"目标,制作一个"功能"工件。
每个" features.xml"文件有一个" $ {pom.version}"字符串,以便生成的工件使用封闭的POM文件的版本。
我发现其中一个模块正在生成一个" features.xml"仍然有" $ {pom.version}"串。没有发生属性过滤。这不会发生在任何其他模块中。
这个错误的模块在另一个方面也有所不同。所有其他模块都引用了" maven-bundle-plugin"并且是包装类型"捆绑"。这个模块是包装类型" pom",并没有引用" maven-bundle-plugin"。
因此,我决定尝试将错误的POM更改为打包类型包,并让#34;空"参考" maven-bundle-plugin",没有覆盖默认值(我首先尝试改变包装类型,但是&#34失败;没有这样的包装类型"有点可以理解)
这很有用。错误模块现在生成一个带有" features.xml"带有属性引用的文件替换为值。
我想了解为什么必须这样做。
我真的很惊讶我从来没有引用" maven-resources-plugin",因为我认为我必须这样做以获得任何属性过滤。看来这是默认情况下完成的,可能是" build-helper-maven-plugin"的一部分。
更新:
这是有问题的POM,有一些成就:
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>2.2.0-SNAPSHOT</version>
<relativePath>...</relativePath>
</parent>
<artifactId>...</artifactId>
<name>...</name>
<url>http://maven.apache.org</url>
<packaging>bundle</packaging> <!-- Change this to "pom" -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin> <!-- Comment this plugin out -->
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>src/main/resources/features.xml</file>
<type>xml</type>
<classifier>features</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
注意两个注释,一个在&#34; packaging-type&#34;上,另一个在第一个插件定义上。如果您在那里进行了更改,它将不再对features.xml文件进行属性过滤。
这是非常简单的&#34; features.xml&#34;来自src / main / resources的文件,再次与elisions:
<?xml version="1.0" encoding="UTF-8"?>
<features name="stuff-features" xmlns="http://karaf.apache.org/xmlns/features/v1.3.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.3.0 http://karaf.apache.org/xmlns/features/v1.3.0">
<repository>mvn:.../...-servicefactory-impl/${pom.version}/xml/features</repository>
<feature name='stuff-all'>
<feature>...-servicefactory</feature>
</feature>
</features>
注意&#34; $ {pom.version}&#34;参考。当POM处于当前状态时,生成的&#34; features.xml&#34;文件将替换为&#34; 2.2.0-SNAPSHOT&#34;。如果您进行上述更改,则不会进行此过滤。