-
1. JBoss Embedded AS with JBoss AS 6.0.0 Final?
alrubinger Jan 22, 2011 9:24 AM (in response to pgmjsd)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 Jan 22, 2011 1:56 PM (in response to alrubinger)Okay. Same maven dependencies, but with a different version, right?
-
3. JBoss Embedded AS with JBoss AS 6.0.0 Final?
pgmjsd Jan 25, 2011 1:37 PM (in response to alrubinger)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 Jan 25, 2011 9:23 PM (in response to 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.