Java Reference
In-Depth Information
The next step will be configuring the client's pom.xml file.
Configuring the client's project object module
Configuring the client dependencies will require basically all the libraries that connect
and transport data to the server, along with the required EJB client dependencies.
The first thing we will add, just as we did for the server project, is the BOM for the
EJB client dependencies:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-ejb-client-bom</artifactId>
<version>7.2.0.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Search WWH ::




Custom Search