390f56616f
* bean dependency injection types tutorial * Edited and added the JUnit tests. * Edited the bean.xml files for new class names. * Deleted evaluation article. * first phase - TODO: JPA * Project for How to setup Wildfly * Deleted old project * Delted tests in EJB - test Servlet * LAST commit * Restored deleted files - accident * dependency corrections * reapply changes * eclipse Baeldung formatter file - format code * removed metadata
39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.baeldung.wildfly</groupId>
|
|
<artifactId>wildfly-example</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>widlfly-web</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<dependencies>
|
|
<!-- Dependency for java ee -->
|
|
<dependency>
|
|
<groupId>javax</groupId>
|
|
<artifactId>javaee-api</artifactId>
|
|
<version>7.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Dependency for JPA module -->
|
|
<dependency>
|
|
<groupId>com.baeldung.wildfly</groupId>
|
|
<artifactId>wildfly-jpa</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- Dependency for EJB interface module -->
|
|
<dependency>
|
|
<groupId>com.baeldung.wildfly</groupId>
|
|
<artifactId>wildfly-ejb-interfaces</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- Dependency for EJB interface module -->
|
|
<dependency>
|
|
<groupId>com.baeldung.wildfly</groupId>
|
|
<artifactId>wildfly-ejb</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |