Issue Type: Bug Bug
Assignee: Jozef Hartinger
Created: 21/Jan/14 3:50 AM
Description:

EAR/lib/foo.jar and EAR/bar.war

foo.jar:

import javax.inject.Named;

@Named("echo")
public class CommonEcho {
    public String getText() {
        return "CommonEcho";
    }
}

and a page in bar.war:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head>
</h:head>
<h:body>
    <h:outputText value="#{echo.text}" />
</h:body>
</html>

no longer works in Weld 1.1.7.Final

Project: Weld
Priority: Critical Critical
Reporter: Marek Schmidt
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira