Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jstl-dev] JSTL Impl Compilation Issue

Hi,

I was looking over the JSTL project and tried to do a build and hit the following set of errors:

[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[93,40] cannot find symbol
[ERROR]   symbol:   variable ER_ARG_CANNOT_BE_NULL
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[117,40] cannot find symbol
[ERROR]   symbol:   variable ER_ARG_CANNOT_BE_NULL
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[141,40] cannot find symbol
[ERROR]   symbol:   variable ER_ARG_CANNOT_BE_NULL
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[259,40] cannot find symbol
[ERROR]   symbol:   variable ER_ARG_CANNOT_BE_NULL
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[265,40] cannot find symbol
[ERROR]   symbol:   variable ER_ARG_CANNOT_BE_NULL
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[273,40] cannot find symbol
[ERROR]   symbol:   variable ER_UNSUPPORTED_RETURN_TYPE
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[345,36] cannot find symbol
[ERROR]   symbol:   variable ER_UNSUPPORTED_RETURN_TYPE
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[403,40] cannot find symbol
[ERROR]   symbol:   variable ER_ARG_CANNOT_BE_NULL
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[458,40] cannot find symbol
[ERROR]   symbol:   variable ER_ARG_CANNOT_BE_NULL
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[464,40] cannot find symbol
[ERROR]   symbol:   variable ER_ARG_CANNOT_BE_NULL
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[470,40] cannot find symbol
[ERROR]   symbol:   variable ER_ARG_CANNOT_BE_NULL
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] /C:/jakartaGit/jstl-api/impl/src/main/java/org/apache/taglibs/standard/tag/common/xml/JSTLXPathImpl.java:[479,40] cannot find symbol
[ERROR]   symbol:   variable ER_UNSUPPORTED_RETURN_TYPE
[ERROR]   location: class org.apache.xpath.res.XPATHErrorResources
[ERROR] -> [Help 1]

The pom.xml for the impl looks to have a dependency for xalan listed:

        <dependency>
            <groupId>xalan</groupId>
            <artifactId>xalan</artifactId>
            <version>2.7.2</version>
        </dependency>

Any thoughts?

Thanks,

Paul Nicolucci

Back to the top