Fix #188 - allow for module visibility when accessing class methods

Implementing class may not be accessible but the interface it implements
is. In this case, need to make sure access is via the interface method.
3 files changed
tree: 3b0b8935fffd620fa33cfa55e84ecc8efe7afa53
  1. api/
  2. spec/
  3. src/
  4. .gitignore
  5. CONTRIBUTING.md
  6. exclude.xml
  7. LICENSE.md
  8. NOTICE.md
  9. pom.xml
  10. README.md
README.md

Jakarta Expression Language

This repository contains the source for:

  • the Jakarta Expression Language API (/api) -
  • the Jakarta Expression Language specification (/spec)

Building

API

Jakarta Expression Language API can be built by executing the following from the project root:

cd api
mvn clean package

The API jar can then be found in /impl/target.

Specification

Jakarta Expression Language specification can be built by executing the following from the project root:

cd spec
mvn clean package

The API jar can then be found in /spec/target.

Making Changes

To make changes, fork this repository, make your changes, and submit a pull request.

About Jakarta Expression Language

Jakarta Expression Language defines an expression language for Java applications.