Java 如何更新RichFaces库版本?

Java 如何更新RichFaces库版本?,java,eclipse,maven,richfaces,Java,Eclipse,Maven,Richfaces,在我的maven项目中,有三个依赖项对应于RichFaces: <dependency> <groupId>org.richfaces.framework</groupId> <artifactId>richfaces-api</artifactId> </dependency> <dependency> <groupId>org.richfaces.framework<

在我的maven项目中,有三个依赖项对应于
RichFaces

<dependency>
    <groupId>org.richfaces.framework</groupId>
    <artifactId>richfaces-api</artifactId>
</dependency>
<dependency>
    <groupId>org.richfaces.framework</groupId>
    <artifactId>richfaces-impl</artifactId>
</dependency>
<dependency>
    <groupId>org.richfaces.ui</groupId>
    <artifactId>richfaces-ui</artifactId>
</dependency>

org.richfaces.framework
RichFacesAPI
org.richfaces.framework
RichFacesImpl
org.richfaces.ui
里奇

在我的eclipse项目的根目录中,MavenDependencies分支包含
richfacesapi/ui/core-3.3
。如何更改pom以上载最新的可用版本?问题是在
pom

中没有定义任何版本,必须定义一个版本,否则它将无法工作。如果您将鼠标悬停在依赖项上,Eclipse将告诉您正在使用的版本以及在何处找到定义。

我认为在pom中有一个bom依赖项,例如

              <dependency>  
                <groupId>org.richfaces</groupId>  
                <artifactId>richfaces-bom</artifactId>  
                <version>BOM-VERSION</version>  
                <scope>import</scope>  
                <type>pom</type>  
            </dependency> 

org.richfaces
richfaces bom表
BOM版本
进口
聚甲醛
将BOM版本零件更新为新零件,如“4.3.7.最终”