2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-10-31 21:43:47 -04:00
|
|
|
<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>
|
|
|
|
<artifactId>wildfly-ear</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<name>wildfly-ear</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
<packaging>ear</packaging>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.wildfly</groupId>
|
|
|
|
<artifactId>wildfly</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Dependency for web module -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baeldung.wildfly</groupId>
|
|
|
|
<artifactId>widlfly-web</artifactId>
|
|
|
|
<version>${wildlfy.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
<!-- Dependency for web module -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baeldung.wildfly</groupId>
|
|
|
|
<artifactId>wildfly-jpa</artifactId>
|
|
|
|
<version>${wildlfy.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- Dependency for EJB -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baeldung.wildfly</groupId>
|
|
|
|
<artifactId>wildfly-ejb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- Dependency for EJB -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baeldung.wildfly</groupId>
|
|
|
|
<artifactId>wildfly-ejb-interfaces</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-ear-plugin</artifactId>
|
|
|
|
<version>${maven-ear-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<defaultLibBundleDir>lib/</defaultLibBundleDir>
|
2019-12-24 06:47:09 -05:00
|
|
|
<version>${defaultLibBundleDir.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<modules>
|
|
|
|
<webModule>
|
|
|
|
<groupId>com.baeldung.wildfly</groupId>
|
|
|
|
<artifactId>widlfly-web</artifactId>
|
|
|
|
<contextRoot>/wildfly</contextRoot>
|
|
|
|
</webModule>
|
|
|
|
</modules>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.wildfly.plugins</groupId>
|
|
|
|
<artifactId>wildfly-maven-plugin</artifactId>
|
|
|
|
<version>${wildfly-maven-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<properties>
|
|
|
|
<maven-ear-plugin.version>2.10.1</maven-ear-plugin.version>
|
|
|
|
<wildfly-maven-plugin.version>1.2.0.Final</wildfly-maven-plugin.version>
|
2019-12-24 06:47:09 -05:00
|
|
|
<defaultLibBundleDir.version>7</defaultLibBundleDir.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
</project>
|