1 Reply Latest reply on Jan 26, 2008 1:06 PM by muhviehstarr

    Maven Question

    cristant

      Do any of you know if there is an easy way to pull in all the standard runtime libraries for the JBoss server (basically the contents of the lib directories) into a Maven project for compilation of a WAR against those libraries?

      We're working with the commercial 4.2.x series of JBoss AS, and the latest JBoss libraries I could find in the maven repositories were from version 4.0.x.

      Thanks,
      ~Matt

        • 1. Re: Maven Question
          muhviehstarr

          Anyone having a nice solution other than installing the provided jars manually into an own repository?

          If not, is this planned for the 5.x releases of jboss-as?

          it would be nice something like:

          <dependency>
          <groupId>org.jboss</groupId>
          <artifactId>jboss-as</artifactId>
          <version>4.2.1.GA</version>
          <scope>provided</scope>
          </dependency>
          


          Thanks