JBoss Java EE 6 Specification APIs with Hibernate 3

Dependency Management for Java EE 6 Specification APIs with Hibernate 3 projects

License

License

Categories

Categories

JBoss Container Application Servers Hibernate Data ORM
GroupId

GroupId

org.jboss.bom.eap
ArtifactId

ArtifactId

jboss-javaee-6.0-with-hibernate3
Last Version

Last Version

6.2.0-redhat-1
Release Date

Release Date

Type

Type

pom
Description

Description

JBoss Java EE 6 Specification APIs with Hibernate 3
Dependency Management for Java EE 6 Specification APIs with Hibernate 3 projects

Download jboss-javaee-6.0-with-hibernate3

How to add to project

<!-- https://jarcasting.com/artifacts/org.jboss.bom.eap/jboss-javaee-6.0-with-hibernate3/ -->
<dependency>
    <groupId>org.jboss.bom.eap</groupId>
    <artifactId>jboss-javaee-6.0-with-hibernate3</artifactId>
    <version>6.2.0-redhat-1</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/org.jboss.bom.eap/jboss-javaee-6.0-with-hibernate3/
implementation 'org.jboss.bom.eap:jboss-javaee-6.0-with-hibernate3:6.2.0-redhat-1'
// https://jarcasting.com/artifacts/org.jboss.bom.eap/jboss-javaee-6.0-with-hibernate3/
implementation ("org.jboss.bom.eap:jboss-javaee-6.0-with-hibernate3:6.2.0-redhat-1")
'org.jboss.bom.eap:jboss-javaee-6.0-with-hibernate3:pom:6.2.0-redhat-1'
<dependency org="org.jboss.bom.eap" name="jboss-javaee-6.0-with-hibernate3" rev="6.2.0-redhat-1">
  <artifact name="jboss-javaee-6.0-with-hibernate3" type="pom" />
</dependency>
@Grapes(
@Grab(group='org.jboss.bom.eap', module='jboss-javaee-6.0-with-hibernate3', version='6.2.0-redhat-1')
)
libraryDependencies += "org.jboss.bom.eap" % "jboss-javaee-6.0-with-hibernate3" % "6.2.0-redhat-1"
[org.jboss.bom.eap/jboss-javaee-6.0-with-hibernate3 "6.2.0-redhat-1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

JBoss BOMs

The JBoss BOM's project provides Maven BOM files enhancing Jave EE 7 with deployment and test tooling. These files manage the version of the dependencies you use in your project, ensuring you always get a compatible stack.

Usage

To use the BOM, import into your dependency management. For example, if you wanted "Java EE with Tools recommended by JBoss", use:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.jboss.bom</groupId>
            <artifactId>jboss-javaee-7.0-eap</artifactId>
            <version>7.0.10-SNAPSHOT</version>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Unfortunately, Maven doesn't allow you to specify plugin versions this way. The readme for each BOM calls out any plugin versions you should use. For example, to use the plugins associated with "Java EE with Tools recommended by JBoss":

<pluginManagement>
    <plugins>
        <!-- The Maven Surefire plugin tests your application. Here we ensure we are using a version compatible with Arquillian -->
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.17</version>
        </plugin>
        <!-- The WildFly Maven Plugin deploys your war to a local WildFly container -->
        <!-- To use, set the JBOSS_HOME environment variable and run:
             mvn package wildfly:deploy -->
        <plugin>
            <groupId>org.wildfly.plugins</groupId>
            <artifactId>wildfly-maven-plugin</artifactId>
            <version>1.0.2.Final</version>
        </plugin>
    </plugins>
</pluginManagement>

You'll need to take a look at the POM source in order to find the latest versions of plugins recommended.

org.jboss.bom.eap

JBoss Developer

Versions

Version
6.2.0-redhat-1
6.1.0-redhat-1