<?xml version="1.0" encoding="UTF-8"?>

<!--
  ~ JBoss, Home of Professional Open Source.
  ~ Copyright 2010, 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.
  -->

<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.wildfly</groupId>
        <artifactId>wildfly-parent</artifactId>
        <version>8.2.0.Final</version>
    </parent>

    <artifactId>wildfly-build</artifactId>

    <name>WildFly: Build</name>
    <packaging>pom</packaging>

    <properties>
        <!-- generated configs root dirs -->
        <generated.configs>${basedir}/target/generated-configs</generated.configs>
        <generated.configs.standalone>${generated.configs}/standalone/configuration</generated.configs.standalone>
        <generated.configs.domain>${generated.configs}/domain/configuration</generated.configs.domain>
        <generated.configs.examples>${generated.configs}/docs/examples/configs</generated.configs.examples>
        <generated.configs.src.dir>${basedir}/src/main/resources</generated.configs.src.dir>
    </properties>


    <dependencies>

        <!-- TODO: why do we need jandex in minimal? -->
        <dependency>
            <groupId>org.jboss</groupId>
            <artifactId>jandex</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss</groupId>
            <artifactId>jboss-dmr</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss</groupId>
            <artifactId>staxmapper</artifactId>
        </dependency>

        <!-- Add this dependency to make sure that the core model is tested before we build the server -->
        <dependency>
            <groupId>org.wildfly</groupId>
            <artifactId>wildfly-core-model-test-framework</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-model-test</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>org.wildfly</groupId>
            <artifactId>wildfly-domain-http-error-context</artifactId>
        </dependency>

        <dependency>
            <groupId>org.wildfly</groupId>
            <artifactId>wildfly-io</artifactId>
        </dependency>

        <dependency>
            <groupId>org.wildfly</groupId>
            <artifactId>wildfly-jmx</artifactId>
        </dependency>

        <dependency>
            <groupId>org.wildfly</groupId>
            <artifactId>wildfly-security-manager</artifactId>
        </dependency>

        <dependency>
            <groupId>org.wildfly.security</groupId>
            <artifactId>wildfly-security-manager</artifactId>
        </dependency>

        <dependency>
            <groupId>org.wildfly</groupId>
            <artifactId>wildfly-server</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.invocation</groupId>
            <artifactId>jboss-invocation</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.logging</groupId>
            <artifactId>jboss-logging</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.logging</groupId>
            <artifactId>jul-to-slf4j-stub</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.logmanager</groupId>
            <artifactId>jboss-logmanager</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.logmanager</groupId>
            <artifactId>log4j-jboss-logmanager</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.marshalling</groupId>
            <artifactId>jboss-marshalling</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.marshalling</groupId>
            <artifactId>jboss-marshalling-river</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.modules</groupId>
            <artifactId>jboss-modules</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.msc</groupId>
            <artifactId>jboss-msc</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.narayana.rts</groupId>
            <artifactId>restat-util</artifactId>
        </dependency>

    </dependencies>

    <profiles>
        <profile>
            <id>normal</id>
            <activation>
                <property>
                    <name>!minimalistic</name>
                </property>
            </activation>

            <dependencies>
                <dependency>
                    <groupId>antlr</groupId>
                    <artifactId>antlr</artifactId>
                </dependency>

                <dependency>
                    <groupId>asm</groupId>
                    <artifactId>asm</artifactId>
                </dependency>

                <dependency>
                    <groupId>ch.qos.cal10n</groupId>
                    <artifactId>cal10n-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.fasterxml</groupId>
                    <artifactId>classmate</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.fasterxml.jackson.core</groupId>
                    <artifactId>jackson-core</artifactId>
                </dependency>
                <dependency>
                    <groupId>com.fasterxml.jackson.core</groupId>
                    <artifactId>jackson-annotations</artifactId>
                </dependency>
                <dependency>
                    <groupId>com.fasterxml.jackson.core</groupId>
                    <artifactId>jackson-databind</artifactId>
                </dependency>
                <dependency>
                    <groupId>com.fasterxml.jackson.jaxrs</groupId>
                    <artifactId>jackson-jaxrs-json-provider</artifactId>
                </dependency>
                <dependency>
                    <groupId>com.fasterxml.jackson.jaxrs</groupId>
                    <artifactId>jackson-jaxrs-base</artifactId>
                </dependency>
                <dependency>
                    <groupId>com.fasterxml.jackson.module</groupId>
                    <artifactId>jackson-module-jaxb-annotations</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.github.relaxng</groupId>
                    <artifactId>relaxngDatatype</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.google.guava</groupId>
                    <artifactId>guava</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.h2database</groupId>
                    <artifactId>h2</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.codemodel</groupId>
                    <artifactId>codemodel</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.faces</groupId>
                    <artifactId>jsf-impl</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.istack</groupId>
                    <artifactId>istack-commons-runtime</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.istack</groupId>
                    <artifactId>istack-commons-tools</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.xml.bind</groupId>
                    <artifactId>jaxb-impl</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.xml.bind</groupId>
                    <artifactId>jaxb-xjc</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.xml.fastinfoset</groupId>
                    <artifactId>FastInfoset</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.xml.messaging.saaj</groupId>
                    <artifactId>saaj-impl</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.xml.txw2</groupId>
                    <artifactId>txw2</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.xsom</groupId>
                    <artifactId>xsom</artifactId>
                </dependency>

                <dependency>
                    <groupId>commons-beanutils</groupId>
                    <artifactId>commons-beanutils</artifactId>
                </dependency>

                <dependency>
                    <groupId>commons-cli</groupId>
                    <artifactId>commons-cli</artifactId>
                </dependency>

                <dependency>
                    <groupId>commons-codec</groupId>
                    <artifactId>commons-codec</artifactId>
                </dependency>

                <dependency>
                    <groupId>commons-collections</groupId>
                    <artifactId>commons-collections</artifactId>
                </dependency>

                <dependency>
                    <groupId>commons-io</groupId>
                    <artifactId>commons-io</artifactId>
                </dependency>

                <dependency>
                    <groupId>commons-lang</groupId>
                    <artifactId>commons-lang</artifactId>
                </dependency>

                <dependency>
                    <groupId>commons-configuration</groupId>
                    <artifactId>commons-configuration</artifactId>
                </dependency>

                <dependency>
                    <groupId>commons-pool</groupId>
                    <artifactId>commons-pool</artifactId>
                </dependency>

                <dependency>
                    <groupId>dom4j</groupId>
                    <artifactId>dom4j</artifactId>
                </dependency>

                <dependency>
                    <groupId>gnu.getopt</groupId>
                    <artifactId>java-getopt</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jacorb</groupId>
                    <artifactId>jacorb</artifactId>
                </dependency>

                <dependency>
                    <groupId>javax.activation</groupId>
                    <artifactId>activation</artifactId>
                </dependency>

                <dependency>
                    <groupId>javax.enterprise</groupId>
                    <artifactId>cdi-api</artifactId>
                    <exclusions>
                        <exclusion>
                            <groupId>org.jboss.spec.javax.interceptor</groupId>
                            <artifactId>jboss-interceptors-api_1.1_spec</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>

                <dependency>
                    <groupId>javax.inject</groupId>
                    <artifactId>javax.inject</artifactId>
                </dependency>

                <dependency>
                    <groupId>javax.jws</groupId>
                    <artifactId>jsr181-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>com.sun.mail</groupId>
                    <artifactId>javax.mail</artifactId>
                </dependency>

                <dependency>
                    <groupId>javax.validation</groupId>
                    <artifactId>validation-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>jaxen</groupId>
                    <artifactId>jaxen</artifactId>
                </dependency>

                <dependency>
                    <groupId>jboss.jaxbintros</groupId>
                    <artifactId>jboss-jaxb-intros</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.aesh</groupId>
                    <artifactId>aesh</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.fusesource.jansi</groupId>
                    <artifactId>jansi</artifactId>
                </dependency>

                <dependency>
                    <groupId>joda-time</groupId>
                    <artifactId>joda-time</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jsoup</groupId>
                    <artifactId>jsoup</artifactId>
                </dependency>

                <dependency>
                    <groupId>net.jcip</groupId>
                    <artifactId>jcip-annotations</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.avro</groupId>
                    <artifactId>avro</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-bindings-coloc</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-bindings-object</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-bindings-soap</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-bindings-xml</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-core</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-databinding-aegis</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-databinding-jaxb</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-frontend-jaxws</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-frontend-simple</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-management</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-transports-http</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-transports-local</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-transports-jms</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-ws-addr</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-ws-mex</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-ws-policy</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-ws-rm</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-ws-security</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-tools-common</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-tools-java2ws</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-tools-validator</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-tools-wsdlto-core</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf.services.sts</groupId>
                    <artifactId>cxf-services-sts-core</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf.services.ws-discovery</groupId>
                    <artifactId>cxf-services-ws-discovery-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf.xjcplugins</groupId>
                    <artifactId>cxf-xjc-boolean</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf.xjcplugins</groupId>
                    <artifactId>cxf-xjc-dv</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.cxf.xjcplugins</groupId>
                    <artifactId>cxf-xjc-ts</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.opensaml</groupId>
                    <artifactId>opensaml</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.opensaml</groupId>
                    <artifactId>openws</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.opensaml</groupId>
                    <artifactId>xmltooling</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.httpcomponents</groupId>
                    <artifactId>httpclient</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.httpcomponents</groupId>
                    <artifactId>httpcore</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.httpcomponents</groupId>
                    <artifactId>httpmime</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.james</groupId>
                    <artifactId>apache-mime4j</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.lucene</groupId>
                    <artifactId>lucene-analyzers</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.apache.lucene</groupId>
                    <artifactId>lucene-core</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.apache.lucene</groupId>
                    <artifactId>lucene-facet</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.apache.lucene</groupId>
                    <artifactId>lucene-memory</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.neethi</groupId>
                    <artifactId>neethi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.qpid</groupId>
                    <artifactId>proton-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.qpid</groupId>
                    <artifactId>proton-jms</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.qpid</groupId>
                    <artifactId>proton-j-impl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.santuario</groupId>
                    <artifactId>xmlsec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.ws.xmlschema</groupId>
                    <artifactId>xmlschema-core</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.velocity</groupId>
                    <artifactId>velocity</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.apache.ws.security</groupId>
                    <artifactId>wss4j</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.bouncycastle</groupId>
                    <artifactId>bcprov-jdk15on</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.bouncycastle</groupId>
                    <artifactId>bcmail-jdk15on</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.bouncycastle</groupId>
                    <artifactId>bcpkix-jdk15on</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.codehaus.jackson</groupId>
                    <artifactId>jackson-core-asl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.codehaus.jackson</groupId>
                    <artifactId>jackson-mapper-asl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.codehaus.jackson</groupId>
                    <artifactId>jackson-jaxrs</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.codehaus.jackson</groupId>
                    <artifactId>jackson-xc</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.codehaus.jettison</groupId>
                    <artifactId>jettison</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.codehaus.woodstox</groupId>
                    <artifactId>woodstox-core-asl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.codehaus.woodstox</groupId>
                    <artifactId>stax2-api</artifactId>
                </dependency>

                <!-- JSR-353 JSONP RI implementation -->
                <dependency>
                    <groupId>org.glassfish</groupId>
                    <artifactId>javax.json</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.glassfish</groupId>
                    <artifactId>javax.el</artifactId>
                </dependency>

                <!-- JSR-236 RI -->
                <dependency>
                    <groupId>org.glassfish</groupId>
                    <artifactId>javax.enterprise.concurrent</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-core</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hibernate.common</groupId>
                    <artifactId>hibernate-commons-annotations</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-entitymanager</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-infinispan</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-validator</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-validator-cdi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-envers</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-search-engine</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-search-infinispan</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-search-orm</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hibernate.javax.persistence</groupId>
                    <artifactId>hibernate-jpa-2.1-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hibernate.hql</groupId>
                    <artifactId>hibernate-hql-lucene</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.hibernate.hql</groupId>
                    <artifactId>hibernate-hql-parser</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-amqp-protocol</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-commons</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-tools</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-core-client</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-jms-client</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-jms-server</artifactId>
                    <exclusions>
                        <exclusion>
                            <groupId>org.jboss.jbossts.jts</groupId>
                            <artifactId>jbossjts-jacorb</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-journal</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-native</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-ra</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-server</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.hornetq</groupId>
                    <artifactId>hornetq-stomp-protocol</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.infinispan</groupId>
                    <artifactId>infinispan-cachestore-jdbc</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.infinispan</groupId>
                    <artifactId>infinispan-cachestore-remote</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.infinispan</groupId>
                    <artifactId>infinispan-client-hotrod</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.infinispan</groupId>
                    <artifactId>infinispan-commons</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.infinispan</groupId>
                    <artifactId>infinispan-core</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.infinispan</groupId>
                    <artifactId>infinispan-lucene-directory</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.infinispan</groupId>
                    <artifactId>infinispan-lucene-v3</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.infinispan</groupId>
                    <artifactId>infinispan-query</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.infinispan</groupId>
                    <artifactId>infinispan-query-dsl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.javassist</groupId>
                    <artifactId>javassist</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jberet</groupId>
                    <artifactId>jberet-core</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.common</groupId>
                    <artifactId>jboss-common-beans</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss</groupId>
                    <artifactId>jboss-common-core</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss</groupId>
                    <artifactId>jboss-iiop-client</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss</groupId>
                    <artifactId>jboss-vfs</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-appclient</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-config-assembly</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-cli</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-cli</artifactId>
                    <classifier>client</classifier>
                    <scope>provided</scope>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-client-all</artifactId>
                    <scope>provided</scope>
                    <exclusions>
                        <exclusion>
                            <groupId>org.wildfly</groupId>
                            <artifactId>wildfly-ejb-client-bom</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>org.wildfly</groupId>
                            <artifactId>wildfly-jms-client-bom</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-common</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-ejb-infinispan</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-ejb-spi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-infinispan</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-jgroups</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-server</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-singleton</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-web-api</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-web-infinispan</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-web-spi</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-clustering-web-undertow</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-cmp</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.hal</groupId>
                    <artifactId>release-stream</artifactId>
                    <classifier>resources</classifier>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-batch</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-jberet</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-connector</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-controller</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-controller-client</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-core-security-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-core-security</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-domain-http-interface</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-domain-management</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-deployment-repository</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-deployment-scanner</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-ee</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-ejb3</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-embedded</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-jaxr</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-jaxrs</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-jdr</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-jsf</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-jsf-injection</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-jsr77</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-host-controller</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-jacorb</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-logging</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-mail</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-management-client-content</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-messaging</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-mod_cluster-extension</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-mod_cluster-undertow</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-naming</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-network</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-patching</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-platform-mbean</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-pojo</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-process-controller</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-protocol</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-remoting</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-sar</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-security-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-security</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-security-manager</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly.security</groupId>
                    <artifactId>wildfly-security-manager</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-system-jmx</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-threads</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-transactions</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-version</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-web</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-web-common</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-weld</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-webservices-server-integration</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-xts</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-rts</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.narayana.rts</groupId>
                    <artifactId>restat-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.narayana.rts</groupId>
                    <artifactId>restat-integration</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.narayana.rts</groupId>
                    <artifactId>restat-bridge</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.narayana.txframework</groupId>
                    <artifactId>txframework</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.classfilewriter</groupId>
                    <artifactId>jboss-classfilewriter</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.com.sun.httpserver</groupId>
                    <artifactId>httpserver</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss</groupId>
                    <artifactId>jboss-ejb-client</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ejb3</groupId>
                    <artifactId>jboss-ejb3-ext-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-jpa</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jipijapa</groupId>
                    <artifactId>jipijapa-hibernate3</artifactId>
                    <exclusions>
                        <exclusion>
                            <groupId>org.hibernate</groupId>
                            <artifactId>hibernate-commons-annotations</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>

                <dependency>
                    <groupId>org.jipijapa</groupId>
                    <artifactId>jipijapa-hibernate4-3</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jipijapa</groupId>
                    <artifactId>jipijapa-hibernate4-1</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jipijapa</groupId>
                    <artifactId>jipijapa-eclipselink</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jipijapa</groupId>
                    <artifactId>jipijapa-openjpa</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jipijapa</groupId>
                    <artifactId>jipijapa-spi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss</groupId>
                    <artifactId>jboss-transaction-spi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.genericjms</groupId>
                    <artifactId>generic-jms-ra-jar</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ironjacamar</groupId>
                    <artifactId>ironjacamar-core-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ironjacamar</groupId>
                    <artifactId>ironjacamar-core-impl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ironjacamar</groupId>
                    <artifactId>ironjacamar-common-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ironjacamar</groupId>
                    <artifactId>ironjacamar-common-spi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ironjacamar</groupId>
                    <artifactId>ironjacamar-common-impl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ironjacamar</groupId>
                    <artifactId>ironjacamar-deployers-common</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ironjacamar</groupId>
                    <artifactId>ironjacamar-jdbc</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ironjacamar</groupId>
                    <artifactId>ironjacamar-spec-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ironjacamar</groupId>
                    <artifactId>ironjacamar-validator</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.narayana.jts</groupId>
                    <artifactId>narayana-jts-jacorb</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.narayana.jts</groupId>
                    <artifactId>narayana-jts-integration</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.narayana</groupId>
                    <artifactId>jbosstxbridge</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.narayana.xts</groupId>
                    <artifactId>jbossxts</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.narayana.xts</groupId>
                    <artifactId>jbossxts</artifactId>
                    <classifier>api</classifier>
                </dependency>

                <dependency>
                    <groupId>org.jboss.metadata</groupId>
                    <artifactId>jboss-metadata-appclient</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.metadata</groupId>
                    <artifactId>jboss-metadata-common</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.metadata</groupId>
                    <artifactId>jboss-metadata-ear</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.metadata</groupId>
                    <artifactId>jboss-metadata-ejb</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.metadata</groupId>
                    <artifactId>jboss-metadata-web</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.mod_cluster</groupId>
                    <artifactId>mod_cluster-container-spi</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.jboss.mod_cluster</groupId>
                    <artifactId>mod_cluster-core</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.xnio.netty</groupId>
                    <artifactId>netty-xnio-transport</artifactId>
                    <exclusions>
                        <exclusion>
                            <groupId>io.netty</groupId>
                            <artifactId>netty-transport</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>io.netty</groupId>
                            <artifactId>netty-buffer</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>

                <dependency>
                    <groupId>io.undertow</groupId>
                    <artifactId>undertow-core</artifactId>
                </dependency>

                <!--
                    Netty 4
                    io.netty:netty-all is for Netty 4.x versions
                -->
                <dependency>
                    <groupId>io.netty</groupId>
                    <artifactId>netty-all</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.osgi.metadata</groupId>
                    <artifactId>jbosgi-metadata</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.remoting</groupId>
                    <artifactId>jboss-remoting</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.remotingjmx</groupId>
                    <artifactId>remoting-jmx</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss</groupId>
                    <artifactId>jboss-remote-naming</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>jaxrs-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>jose-jwt</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-client</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-jaxrs</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>async-http-servlet-3.0</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-spring</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-atom-provider</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-cdi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-crypto</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-jackson-provider</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-jackson2-provider</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-json-p-provider</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-jaxb-provider</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-jettison-provider</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-jsapi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-multipart-provider</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-validator-provider-11</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.resteasy</groupId>
                    <artifactId>resteasy-yaml-provider</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.sasl</groupId>
                    <artifactId>jboss-sasl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.seam.integration</groupId>
                    <artifactId>jboss-seam-int-jbossas</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.security</groupId>
                    <artifactId>jboss-negotiation-common</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.security</groupId>
                    <artifactId>jboss-negotiation-extras</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.security</groupId>
                    <artifactId>jboss-negotiation-net</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.security</groupId>
                    <artifactId>jboss-negotiation-ntlm</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.security</groupId>
                    <artifactId>jboss-negotiation-spnego</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.security</groupId>
                    <artifactId>jbossxacml</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.shrinkwrap</groupId>
                    <artifactId>shrinkwrap-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.shrinkwrap</groupId>
                    <artifactId>shrinkwrap-impl-base</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.shrinkwrap</groupId>
                    <artifactId>shrinkwrap-spi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.slf4j</groupId>
                    <artifactId>slf4j-jboss-logmanager</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.annotation</groupId>
                    <artifactId>jboss-annotations-api_1.2_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.batch</groupId>
                    <artifactId>jboss-batch-api_1.0_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.ejb</groupId>
                    <artifactId>jboss-ejb-api_3.2_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.el</groupId>
                    <artifactId>jboss-el-api_3.0_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.enterprise.concurrent</groupId>
                    <artifactId>jboss-concurrency-api_1.0_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.faces</groupId>
                    <artifactId>jboss-jsf-api_2.2_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.interceptor</groupId>
                    <artifactId>jboss-interceptors-api_1.2_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.jms</groupId>
                    <artifactId>jboss-jms-api_2.0_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.management.j2ee</groupId>
                    <artifactId>jboss-j2eemgmt-api_1.1_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.resource</groupId>
                    <artifactId>jboss-connector-api_1.7_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.rmi</groupId>
                    <artifactId>jboss-rmi-api_1.0_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.security.auth.message</groupId>
                    <artifactId>jboss-jaspi-api_1.1_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.security.jacc</groupId>
                    <artifactId>jboss-jacc-api_1.5_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.servlet</groupId>
                    <artifactId>jboss-servlet-api_3.1_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.servlet.jsp</groupId>
                    <artifactId>jboss-jsp-api_2.3_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.servlet.jstl</groupId>
                    <artifactId>jboss-jstl-api_1.2_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.transaction</groupId>
                    <artifactId>jboss-transaction-api_1.2_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.xml.bind</groupId>
                    <artifactId>jboss-jaxb-api_2.2_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.xml.rpc</groupId>
                    <artifactId>jboss-jaxrpc-api_1.1_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.xml.soap</groupId>
                    <artifactId>jboss-saaj-api_1.3_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.xml.ws</groupId>
                    <artifactId>jboss-jaxws-api_2.2_spec</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.stdio</groupId>
                    <artifactId>jboss-stdio</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.threads</groupId>
                    <artifactId>jboss-threads</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.eclipse.jdt.core.compiler</groupId>
                    <artifactId>ecj</artifactId>
                </dependency>

                <dependency>
                    <groupId>io.undertow</groupId>
                    <artifactId>undertow-servlet</artifactId>
                </dependency>

                <dependency>
                    <groupId>io.undertow</groupId>
                    <artifactId>undertow-websockets-jsr</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.spec.javax.websocket</groupId>
                    <artifactId>jboss-websocket-api_1.1_spec</artifactId>
                </dependency>

                <dependency>
                <groupId>org.wildfly</groupId>
                    <artifactId>wildfly-undertow</artifactId>
                </dependency>

                <dependency>
                    <groupId>io.undertow.jastow</groupId>
                    <artifactId>jastow</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.weld</groupId>
                    <artifactId>weld-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.weld</groupId>
                    <artifactId>weld-core-impl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.weld</groupId>
                    <artifactId>weld-core-jsf</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.weld</groupId>
                    <artifactId>weld-spi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws</groupId>
                    <artifactId>jbossws-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws</groupId>
                    <artifactId>jbossws-common</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws</groupId>
                    <artifactId>jbossws-common-tools</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws</groupId>
                    <artifactId>jbossws-spi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws.projects</groupId>
                    <artifactId>jaxws-undertow-httpspi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws.cxf</groupId>
                    <artifactId>jbossws-cxf-client</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws.cxf</groupId>
                    <artifactId>jbossws-cxf-jaspi</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws.cxf</groupId>
                    <artifactId>jbossws-cxf-factories</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws.cxf</groupId>
                    <artifactId>jbossws-cxf-resources</artifactId>
                    <classifier>wildfly800</classifier>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws.cxf</groupId>
                    <artifactId>jbossws-cxf-server</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws.cxf</groupId>
                    <artifactId>jbossws-cxf-transports-udp</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.ws.cxf</groupId>
                    <artifactId>jbossws-cxf-transports-undertow</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.xnio</groupId>
                    <artifactId>xnio-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss.xnio</groupId>
                    <artifactId>xnio-nio</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jboss</groupId>
                    <artifactId>jbossxb</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jdom</groupId>
                    <artifactId>jdom</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.jgroups</groupId>
                    <artifactId>jgroups</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.kohsuke.rngom</groupId>
                    <artifactId>rngom</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.osgi</groupId>
                    <artifactId>org.osgi.core</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.picketlink</groupId>
                    <artifactId>picketlink-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.picketlink</groupId>
                    <artifactId>picketlink-impl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.picketlink</groupId>
                    <artifactId>picketlink-federation</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.picketlink</groupId>
                    <artifactId>picketlink-common</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.picketlink</groupId>
                    <artifactId>picketlink-config</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.picketlink</groupId>
                    <artifactId>picketlink-idm-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.picketlink</groupId>
                    <artifactId>picketlink-idm-impl</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.picketlink.distribution</groupId>
                    <artifactId>picketlink-wildfly8</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.scannotation</groupId>
                    <artifactId>scannotation</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.picketbox</groupId>
                    <artifactId>picketbox</artifactId>
                </dependency>
                <dependency>
                    <groupId>org.picketbox</groupId>
                    <artifactId>picketbox-commons</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.picketbox</groupId>
                    <artifactId>picketbox-infinispan</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.slf4j</groupId>
                    <artifactId>jcl-over-slf4j</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.slf4j</groupId>
                    <artifactId>slf4j-api</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.slf4j</groupId>
                    <artifactId>slf4j-ext</artifactId>
                </dependency>

                <dependency>
                    <groupId>org.yaml</groupId>
                    <artifactId>snakeyaml</artifactId>
                </dependency>

                <dependency>
                    <groupId>wsdl4j</groupId>
                    <artifactId>wsdl4j</artifactId>
                </dependency>

                <dependency>
                    <groupId>xalan</groupId>
                    <artifactId>serializer</artifactId>
                </dependency>

                <dependency>
                    <groupId>xalan</groupId>
                    <artifactId>xalan</artifactId>
                </dependency>

                <dependency>
                    <groupId>xerces</groupId>
                    <artifactId>xercesImpl</artifactId>
                </dependency>

                <dependency>
                    <groupId>xml-resolver</groupId>
                    <artifactId>xml-resolver</artifactId>
                </dependency>

                <dependency>
                    <groupId>xom</groupId>
                    <artifactId>xom</artifactId>
                </dependency>

            </dependencies>

            <properties>
                <ant.target>all</ant.target>
            </properties>
        </profile>

        <profile>
            <id>minimalistic</id>
            <activation>
                <property><name>minimalistic</name></property>
            </activation>
            <properties>
                <ant.target>minimalistic</ant.target>
            </properties>
        </profile>

        <profile>
            <id>default-build</id>
            <activation>
                <property>
                    <name>!release</name>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-antrun-plugin</artifactId>
                        <inherited>false</inherited>
                        <executions>
                            <execution>
                                <id>build-dist</id>
                                <goals>
                                    <goal>run</goal>
                                </goals>
                                <phase>package</phase>
                                <configuration>
                                    <target>
                                        <ant antfile="build.xml" inheritRefs="true">
                                            <target name="${ant.target}"/>
                                        </ant>
                                    </target>
                                </configuration>
                            </execution>
                        </executions>
                        <dependencies>
                            <dependency>
                                <groupId>org.jboss</groupId>
                                <artifactId>jandex</artifactId>
                                <version>${version.org.jboss.jandex}</version>
                            </dependency>
                            <dependency>
                                <groupId>org.apache.ant</groupId>
                                <artifactId>ant-apache-bsf</artifactId>
                                <version>${version.org.apache.ant}</version>
                            </dependency>
                            <dependency>
                                <groupId>rhino</groupId>
                                <artifactId>js</artifactId>
                                <version>${version.rhino.js}</version>
                            </dependency>
                        </dependencies>
                    </plugin>
                </plugins>
            </build>
        </profile>

        <profile>
            <id>release</id>
            <activation>
                <property>
                    <name>release</name>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>license-maven-plugin</artifactId>
                        <inherited>false</inherited>
                        <executions>
                            <execution>
                                <goals>
                                    <goal>download-licenses</goal>
                                </goals>
                                <phase>package</phase>
                                <configuration>
                                    <licensesOutputDirectory>
                                        ${project.basedir}/../${wildfly.build.output.dir}/docs/licenses
                                    </licensesOutputDirectory>
                                    <licensesOutputFile>
                                        ${project.basedir}/../${wildfly.build.output.dir}/docs/licenses/licenses.xml
                                    </licensesOutputFile>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-antrun-plugin</artifactId>
                        <inherited>false</inherited>
                        <executions>
                            <execution>
                                <id>build-core</id>
                                <goals>
                                    <goal>run</goal>
                                </goals>
                                <phase>package</phase>
                                <configuration>
                                    <target>
                                        <ant antfile="build-core.xml" inheritRefs="true">
                                            <target name="${ant.target}"/>
                                        </ant>
                                    </target>
                                </configuration>
                            </execution>
                            <execution>
                                <id>build-dist</id>
                                <goals>
                                    <goal>run</goal>
                                </goals>
                                <phase>package</phase>
                                <configuration>
                                    <target>
                                        <ant antfile="build.xml" inheritRefs="true">
                                            <target name="${ant.target}"/>
                                        </ant>
                                    </target>
                                </configuration>
                            </execution>
                        </executions>

                        <dependencies>
                            <dependency>
                                <groupId>org.jboss</groupId>
                                <artifactId>jandex</artifactId>
                                <version>${version.org.jboss.jandex}</version>
                            </dependency>
                            <dependency>
                                <groupId>org.apache.ant</groupId>
                                <artifactId>ant-apache-bsf</artifactId>
                                <version>${version.org.apache.ant}</version>
                            </dependency>
                            <dependency>
                                <groupId>rhino</groupId>
                                <artifactId>js</artifactId>
                                <version>${version.rhino.js}</version>
                            </dependency>
                        </dependencies>
                    </plugin>
                </plugins>
            </build>
        </profile>

        <profile>
            <id>enforce</id>
            <activation>
                <property>
                    <name>!skip-enforce</name>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-enforcer-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>ban-transitive-deps</id>
                                <goals>
                                    <goal>enforce</goal>
                                </goals>
                                <configuration>
                                    <rules>
                                        <banTransitiveDependencies>
                                            <excludes>
                                                <!-- Ignore jdk jars because they are system scope -->
                                                <exclude>com.sun:tools</exclude>
                                                <exclude>sun.jdk:jconsole</exclude>
                                            </excludes>
                                        </banTransitiveDependencies>
                                    </rules>
                                </configuration>
                            </execution>
                        </executions>

                    </plugin>
                </plugins>
            </build>
        </profile>
        <profile>
            <id>javadocDist</id>
            <properties>
                <javadoc.branding>WildFly public API - ${project.version}</javadoc.branding>
            </properties>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <version>${version.javadoc.plugin}</version>
                        <executions>
                            <execution>
                                <id>javadocs-dist</id>
                                <goals>
                                    <goal>aggregate-jar</goal>
                                </goals>
                                <phase>validate</phase>
                                <configuration>
                                    <debug>true</debug>
                                    <verbose>true</verbose>
                                    <maxmemory>2400m</maxmemory>
                                    <!-- To prevent problems with author names written in non-UTF-8:
                                    -->
                                    <encoding>ISO-8859-1</encoding>

                                    <windowtitle>${javadoc.branding} public API</windowtitle>
                                    <doctitle>${javadoc.branding} public API</doctitle>
                                    <header>${javadoc.branding}</header>
                                    <footer>${javadoc.branding}</footer>

                                    <includeDependencySources>true</includeDependencySources>
                                    <dependencySourceIncludes>
                                        <!-- Filled by a script during creation of Javadoc. -->
                                    </dependencySourceIncludes>

                                    <dependencySourceExcludes>
                                        <!-- Filled by a script during creation of Javadoc. -->
                                    </dependencySourceExcludes>

                                    <groups>
                                        <!-- Filled by a script during creation of Javadoc. -->
                                    </groups>

                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

</project>
