4 Replies Latest reply on Jan 25, 2011 9:23 PM by pgmjsd

    JBoss Embedded AS with JBoss AS 6.0.0 Final?

    pgmjsd

      Does JBoss Embedded AS work with JBoss AS 6.0.0 Final?   I've finally got some time to start trying it out again and I was wondering whether I should bother with 6.0.0 Final, as the runnable examples are made for M3 and M4 milestone builds.

        • 1. JBoss Embedded AS with JBoss AS 6.0.0 Final?
          alrubinger

          I haven't tagged new examples for 6.0.0 Final yet, but it'll definitely work as we've added Embedded coverage into the JBossAS testsuite.  The only adjustments that *may* need to be made are in the config, but I'll help with that if need be.

           

          S,

          ALR

          • 2. JBoss Embedded AS with JBoss AS 6.0.0 Final?
            pgmjsd

            Okay.   Same maven dependencies, but with a different version, right?

            • 3. JBoss Embedded AS with JBoss AS 6.0.0 Final?
              pgmjsd

              Okay, I've tried using version 6.0.0.Final.   Just doing mvn dependency:resolve I get problems resolving: org.jboss.classpool:jboss-classpool-ucl:pom:1.0.0.Alpha6

               

              That's odd... shouldn't it use 1.0.0.GA?

               

              My setup:

              * Maven 3.0.1, Artifactory proxy that includes the public JBoss Nexus repo, set to 'mirror all'.

              * Import 'depchain' in dependencyManagement  and dependencies

               

               

                  <properties>

                      <version.org.jboss.jbossas>6.0.0.Final</version.org.jboss.jbossas>

                      <JBOSS_HOME>${project.build.directory}/jboss-${version.org.jboss.jbossas}</JBOSS_HOME>

                  </properties>

               

                  <dependencyManagement>

                      <dependencies>

                          <!-- org.jboss.jbossas -->

                          <dependency>

                              <groupId>org.jboss.jbossas</groupId>

                              <artifactId>jboss-as-depchain</artifactId>

                              <version>${version.org.jboss.jbossas}</version>

                              <type>pom</type>

                              <scope>import</scope>

                          </dependency>

                      </dependencies>

                  </dependencyManagement>

                  <!-- Dependencies -->

                  <dependencies>

                      <!-- org.jboss.jbossas -->

                      <dependency>

                          <groupId>org.jboss.jbossas</groupId>

                          <artifactId>jboss-as-depchain</artifactId>

                          <version>${version.org.jboss.jbossas}</version>

                          <type>pom</type>

                      </dependency>

                  </dependencies>

              • 4. JBoss Embedded AS with JBoss AS 6.0.0 Final?
                pgmjsd

                Hm, I think it's my Maven repository proxy (Artifactory).   When I build the milestone4 quickstart example with Maven 3 and a separate settings.xml file, it works *but*  Maven complains a lot about checksums being different.