[jbosstools-issues] [JBoss JIRA] (JBIDE-18584) New beans.xml should let the user choose the CDI version

Xavier Coulon (JIRA) issues at jboss.org
Fri Oct 10 07:55:11 EDT 2014


Xavier Coulon created JBIDE-18584:
-------------------------------------

             Summary: New beans.xml should let the user choose the CDI version 
                 Key: JBIDE-18584
                 URL: https://issues.jboss.org/browse/JBIDE-18584
             Project: Tools (JBoss Tools)
          Issue Type: Enhancement
          Components: cdi
    Affects Versions: 4.2.0.CR1
            Reporter: Xavier Coulon


The "New beans.xml" wizard generates the following content:
{code}
<?xml version="1.0"?>
<beans xmlns="http://java.sun.com/xml/ns/javaee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://jboss.org/schema/cdi/beans_1_0.xsd"/>
{code}

but Java EE 7 includes CDI 1.1 which is like 
{code}
<beans xmlns="http://xmlns.jcp.org/xml/ns/javaee"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd"
       version="1.1" bean-discovery-mode="annotated">
</beans>
{code}

It would be nice if the wizard supported multiple versions of CDI (with e default value based on the CDI project facet ?)



--
This message was sent by Atlassian JIRA
(v6.3.1#6329)


More information about the jbosstools-issues mailing list