Missing jsp-api dependency in maven's pom.xml
---------------------------------------------

                 Key: DISPL-516
                 URL: http://jira.codehaus.org/browse/DISPL-516
             Project: DisplayTag
          Issue Type: Bug
          Components: Build/distribution
    Affects Versions: 1.1.1
            Reporter: Tomas Kramar
            Priority: Trivial


When the decorator is used, compilation fails with message:

RowIdDecorator.java:[5,7] cannot access javax.servlet.jsp.PageContext
   class file for javax.servlet.jsp.PageContext not found
   public class RowIdDecorator extends TableDecorator {

This can be fixed by adding the following code into pom.xml:

<dependency>
      <groupId>jspapi</groupId>
      <artifactId>jsp-api</artifactId>
      <version>2.0</version>
      <scope>compile</scope>
</dependency>

This should be added to displaytag's pom.xml so it can be included transitively.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
displaytag-devel mailing list
displaytag-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-devel

Reply via email to