1 Reply Latest reply on Sep 19, 2012 5:02 AM by jonatan.guillen

    JBoss AS 7 modules: can do a module with all libraries in a directory?

    jonatan.guillen

      I want to define a module with a resource-root like this:

       

      <?xml version="1.0" encoding="UTF-8"?>
      <module xmlns="urn:jboss:module:1.0" name="com.mymodule">
        <resources>
          <resource-root path="libs"/>
        </resources>
        <dependencies />
      </module>
      

       

      The directory contains all the libraries I need. I've tried it and it not work, but if I put it this way it work:

       

      <?xml version="1.0" encoding="UTF-8"?>
      <module xmlns="urn:jboss:module:1.0" name="com.mymodule">
        <resources>
          <resource-root path="libs/lib1.jar"/>
          <resource-root path="libs/lib2.jar"/>
          <resource-root path="libs/lib3.jar"/>
          <resource-root path="libs/lib4.jar"/>
          ........
        </resources>
        <dependencies />
      </module>
      

       

      Is there a way to do it the first?