Skip to content

Commit

Permalink
GTNPORTAL-2683 Created a new org.xmlpull module and add a dependency …
Browse files Browse the repository at this point in the history
…to it in org.gatein.lib only exporting XPP classes and not QName one.
  • Loading branch information
metacosm authored and bdaw committed Oct 17, 2012
1 parent 1bf7d23 commit 0418924
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packaging/jboss-as7/modules/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@
<maven-resource group="org.apache.ws.commons" artifact="ws-commons-util" />
<maven-resource group="com.experlog" artifact="xapool" />
<maven-resource group="org.apache.xmlbeans" artifact="xmlbeans" />
<maven-resource group="xpp3" artifact="xpp3" />
<maven-resource group="com.thoughtworks.xstream" artifact="xstream" />
</module-def>

Expand Down Expand Up @@ -297,6 +296,10 @@
<module-def name="org.apache.commons-httpclient" slot="gatein">
<maven-resource group="commons-httpclient" artifact="commons-httpclient" />
</module-def>

<module-def name="org.xmlpull" slot="main">
<maven-resource group="xpp3" artifact="xpp3" />
</module-def>
</target>

<target name="clean-target">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,13 @@
<module name="org.apache.commons-fileupload" />

<module name="org.gatein.wsrp.integration" export="true" optional="true"/>
<module name="org.xmlpull" export="false" services="export">
<exports>
<include-set>
<path name="org/xmlpull"/>
</include-set>
</exports>
</module>

<module name="org.jboss.as.web"/>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
~ JBoss, Home of Professional Open Source.
~ Copyright 2012, 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.1" name="org.xmlpull">
<resources>
<!-- Insert resources here -->
</resources>
</module>

0 comments on commit 0418924

Please sign in to comment.