1 Reply Latest reply on Apr 2, 2014 1:36 PM by bleathem

    Upgrading from RF4 to RF5

    cohencyr4

      Hello,

       

      I have a web application in Richfaces 4, I am trying to upgrade it to richfaces 5.

       

      in my pom.xml file, I've changed:

      <properties>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      <maven.compiler.source>1.6</maven.compiler.source>
      <maven.compiler.target>1.6</maven.compiler.target>
      <org.richfaces.bom.version>4.3.4.Final</org.richfaces.bom.version>
      </properties>

      by:

      <properties>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      <maven.compiler.source>1.6</maven.compiler.source>
      <maven.compiler.target>1.6</maven.compiler.target>
      <org.richfaces.bom.version>5.0.0.Alpha3</org.richfaces.bom.version>
      </properties>

       

      But in the "Maven Dependencies" I don't see the package "richfaces-5.0.0.Alpha3.jar"

       

      If I add the following in my pom.xml file, the package "richfaces-5.0.0.Alpha3.jar" will appear in the "Maven Dependencies":

       

      <dependency>
      <groupId>org.richfaces</groupId>
      <artifactId>richfaces</artifactId>
      <version>5.0.0.Alpha3</version>
      </dependency>

       

      If I add in the header "xmlns:r="http://richfaces.org", the tag beginning with "r" are not recognized (For example "r:panel").

       

      I've attached the pom.xml, please check what I've done wrong

       

      Thank you