mp5
mp5

Reputation: 159

which jboss-javaee-6.0 version on jboss 7.1.0

i create a example maven application and deployed it to jboss 7.1.0 thunder.

in the pom.xml is the dependency

<dependency>
    <groupId>org.jboss.spec</groupId>
    <artifactId>jboss-javaee-6.0</artifactId>
    <version>1.0.0.Final</version>
    <type>pom</type>
    <scope>provided</scope>
</dependency>

which version of jboss-javaee-6.0 should i use on jobss 7.1.0? there are also other versions available(http://mvnrepository.com/artifact/org.jboss.spec/jboss-javaee-6.0).

thanks and greets

mp5

Upvotes: 0

Views: 1763

Answers (2)

mp5
mp5

Reputation: 159

I think I found the answer in the jboss doc. https://docs.jboss.org/author/display/AS71/Maven+POM+Versions+Checklist this is a version list for writing quickstarts on jboss 7.1

Upvotes: 0

kosa
kosa

Reputation: 66637

It completely depends on your requirement for example, which version of servlets/JSF (or) some other API you want use. If you are starting fresh development, may be going with latest version is always good.

Upvotes: 1

Related Questions