90 lines
3.1 KiB
XML
Executable File
90 lines
3.1 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<groupId>com.baeldung.spring.ejb</groupId>
|
|
<artifactId>spring-ejb</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<name>spring-ejb</name>
|
|
<packaging>pom</packaging>
|
|
<description>Spring EJB Tutorial</description>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<relativePath>../</relativePath>
|
|
</parent>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jboss-public-repository-group</id>
|
|
<name>JBoss Public Maven Repository Group</name>
|
|
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
|
<layout>default</layout>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.baeldung.spring.ejb</groupId>
|
|
<artifactId>spring-ejb-remote</artifactId>
|
|
<version>${spring-ejb-remote.version}</version>
|
|
<type>ejb</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax</groupId>
|
|
<artifactId>javaee-api</artifactId>
|
|
<version>${javaee.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.wildfly</groupId>
|
|
<artifactId>wildfly-ejb-client-bom</artifactId>
|
|
<version>${wildfly-ejb.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-ejb-plugin</artifactId>
|
|
<version>${maven-ejb-plugin.version}</version>
|
|
<configuration>
|
|
<ejbVersion>${ejb.version}</ejbVersion>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<modules>
|
|
<module>spring-ejb-remote</module>
|
|
<module>ejb-beans</module>
|
|
<module>spring-ejb-client</module>
|
|
<module>wildfly</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<spring-ejb-remote.version>1.0.0-SNAPSHOT</spring-ejb-remote.version>
|
|
<javaee.version>8.0</javaee.version>
|
|
<wildfly-ejb.version>12.0.0.Final</wildfly-ejb.version>
|
|
<maven-ejb-plugin.version>2.4</maven-ejb-plugin.version>
|
|
<ejb.version>3.2</ejb.version>
|
|
</properties>
|
|
|
|
</project>
|