-
-
Save fjuma/f73b05c3864255e7b10b49f989f0b75e to your computer and use it in GitHub Desktop.
Example jsf-injection module.xml for MyFaces
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
~ JBoss, Home of Professional Open Source. | |
~ Copyright 2014, Red Hat, Inc., and individual contributors | |
~ as indicated by the @author tags. See the copyright.txt file in the | |
~ distribution for a full listing of individual contributors. | |
~ | |
~ This is free software; you can redistribute it and/or modify it | |
~ under the terms of the GNU Lesser General Public License as | |
~ published by the Free Software Foundation; either version 2.1 of | |
~ the License, or (at your option) any later version. | |
~ | |
~ This software is distributed in the hope that it will be useful, | |
~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
~ Lesser General Public License for more details. | |
~ | |
~ You should have received a copy of the GNU Lesser General Public | |
~ License along with this software; if not, write to the Free | |
~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | |
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org. | |
--> | |
<module xmlns="urn:jboss:module:1.5" name="org.jboss.as.jsf-injection" slot="${jsf-impl-name}-${jsf-version}"> | |
<properties> | |
<property name="jboss.api" value="private"/> | |
</properties> | |
<resources> | |
<resource-root path="wildfly-jsf-injection-${version.jboss.as}.jar"/> | |
<resource-root path="weld-core-jsf-${version.weld.core}.jar"/> | |
</resources> | |
<dependencies> | |
<module name="com.sun.jsf-impl" slot="${jsf-impl-name}-${jsf-version}"/> | |
<module name="javax.api"/> | |
<module name="org.jboss.as.web-common"/> | |
<module name="javax.servlet.api"/> | |
<module name="org.jboss.as.ee"/> | |
<module name="org.jboss.as.jsf"/> | |
<module name="javax.enterprise.api"/> | |
<module name="org.jboss.logging"/> | |
<module name="org.jboss.weld.core"/> | |
<module name="org.wildfly.security.elytron"/> | |
<module name="javax.faces.api" slot="${jsf-impl-name}-${jsf-version}"/> | |
</dependencies> | |
</module> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment