我最近将 PostgreSQL 服务器从 9.2 升级到 9.4。通过这些更改,我更新了 PostgreSQL Utilities RPMs POM.xml
<groupId>org.codehaus.mojo</groupId>
<artifactId>rpm-maven-plugin</artifactId>
<require>postgresql92-postgresql</require>
到
<groupId>org.codehaus.mojo</groupId>
<artifactId>rpm-maven-plugin</artifactId>
<require>rh-postgresql94-postgresql</require>
并且安装新的 RPM 作为安装实用程序包的先决条件。
百胜删除旧 RPM 的最佳方法是什么? (postgresql92-postgresql)
我应该将其添加到安装后脚本中,还是可以像安装 RPM 那样通过 POM.xml 执行此操作?