我正在尝试使用rpm-maven-plugin创建一个rpm包。
一切顺利,直到我尝试让它生成%pre scriptlet(或任何相关的scriptlet)
pom.xml摘录是:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rpm-maven-plugin</artifactId>
<version>2.0-beta-2</version>
<executions>
<execution>
<goals>
<goal>attached-rpm</goal>
</goals>
</execution>
</executions>
<configuration>
<copyright>Copyright 2010 XXX, Inc. All rights reserved</copyright>
<vendor>XXX, Inc.</vendor>
<group>Applications/System</group>
<packager>${env.USER}</packager>
<needarch>true</needarch>
<prefix>/usr/xxx</prefix>
<mappings></mappings>
<preinstallScriptlet>
<script>echo "installing now"</script>
</preinstallScriptlet>
</configuration>
</plugin>
...生成的Spec文件是:
Name: Server
Version: 1.0.0.0
Release: 01_1
Summary: Server Maven Webapp
License: Copyright 2010 XXX, Inc. All rights reserved
Vendor: XXX, Inc.
Group: Applications/System
Packager: yaneeve
Prefix: /usr/xxx
BuildRoot: ....../target/rpm/buildroot
%description
Server
%files
注意:映射标记确实产生了相关的映射,但为了清楚起见,此处已将其删除。无论哪种方式 - sciptlets都不会生成。
任何输入?
全部谢谢
编辑1:
使用Maven 2和3构建 - 结果是一样的。
答案 0 :(得分:2)
好像它是插件版本的问题......
而不是2.0-beta-2,支持scriptlet所需的版本是 2.1-alpha-1