Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Further JavaEE -> JakartaEE fixes for Jakarta Faces #7539

Merged
merged 2 commits into from
Jul 16, 2024

Commits on Jul 2, 2024

  1. JSF Templates need to take into account new namespace schema for Jaka…

    …rta Faces 4+
    
    In the past the core namespaces for JSF were named:
    
    http://xmlns.jcp.org/jsf/<core|facelets|html>
    
    And in templates "http://xmlns.jcp.org" was pulled out as $nsLocation.
    (JSF namespace changed from 2.1 to 2.2).
    
    With JSF 4 another namespace change was enforced as part of the
    donation. The namespaces are now named:
    
    jakarta.faces.<core|facelets|html>
    
    This needs to be considered by templates.
    matthiasblaesing committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    cd5484c View commit details
    Browse the repository at this point in the history
  2. Detected CDI 1.1+ also on Jakarta CDI

    The class used as inidicator for CDI 1.1+ moved from 
    
    javax.enterprise.inject.spi.AfterTypeDiscovery
    
    to
    
    jakarta.enterprise.inject.spi.AfterTypeDiscovery
    matthiasblaesing committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    bc70903 View commit details
    Browse the repository at this point in the history