我有一个多模块maven项目。我从父pom调用RPM插件,但与maven程序集插件不同,我需要提供我希望打包到RPM指定目录的源的完整路径。
例如,除非我指定完整路径,否则以下位置路径将不起作用:
<sources>
<source>
<location>/src/main/config</location>
</source>
</sources>
正则表达式和通配符也不起作用。
有什么建议吗?
感谢
答案 0 :(得分:2)
source参数的documentation表示:
如果路径不以/开头,则视为相对于 项目的基本目录。
因此,如果从位置参数中删除前导/
,它应该可以正常工作。
- 更新 -
我用这个简单的多模块项目做了一点测试:
rpm-test
|-- module1
| |-- pom.xml
| |-- src
| |-- main
| | |-- config
| | | |-- mod1-file1.conf
| | | |-- mod1-file2.conf
|-- module2
| |-- pom.xml
| |-- src
| |-- main
| | |-- config
| | | |-- mod2-file1.conf
| | | |-- mod2-file2.conf
|-- pom.xml
父POM 中rpm-maven-plugin的配置如下所示:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rpm-maven-plugin</artifactId>
<version>2.1-alpha-1</version>
<inherited>false</inherited>
<configuration>
<copyright>2012, Me</copyright>
<group>mygroup</group>
<mappings>
<!-- Option 1: Use the base directory and includes -->
<mapping>
<directory>/usr/local</directory>
<sources>
<source>
<location>${project.basedir}</location>
<includes>
<include>**/src/main/config/**</include>
</includes>
</source>
</sources>
</mapping>
<!-- Option 2: List each module separatly -->
<mapping>
<directory>/tmp</directory>
<sources>
<source>
<location>${project.basedir}/module1/src/main/config</location>
</source>
<source>
<location>${project.basedir}/module2/src/main/config</location>
</source>
</sources>
</mapping>
</mappings>
</configuration>
<executions>
<execution>
<goals>
<goal>rpm</goal>
</goals>
</execution>
</executions>
</plugin>
当我使用rpm -qpl
查询生成的RPM的内容时,我得到以下结果:
/tmp
/tmp/mod1-file1.conf
/tmp/mod1-file2.conf
/tmp/mod2-file1.conf
/tmp/mod2-file2.conf
/usr/local/module1/src/main/config/mod1-file1.conf
/usr/local/module1/src/main/config/mod1-file2.conf
/usr/local/module2/src/main/config/mod2-file1.conf
/usr/local/module2/src/main/config/mod2-file2.conf