1 Reply Latest reply on Oct 24, 2007 4:58 AM by syvalta

    bad dependency exclusion in pom.xml?

    syvalta

      Looking at http://repository.jboss.com/maven2/org/richfaces/ui/3.1.2.GA/ui-3.1.2.GA.pom

      <dependency>
       <groupId>javax.faces</groupId>
       <artifactId>jsf-api</artifactId>
       <version>1.1_02</version>
       <exclusions>
       ...
       <exclusion>
       <artifactId>jstl</artifactId>
       <groupId>javax.servlet.jsp.jstl</groupId>
       </exclusion>
       </exclusions>
      </dependency>
      


      Shouldn't the groupId be javax.servlet.jstl (i.e. without .jsp.), or am I missing something? At least javax.servlet.jsp.jstl doesn't seem to exists.