2026-04-17 10:04:51 +02:00
|
|
|
|
<?xml version="1.0"?>
|
2026-05-07 23:18:31 +02: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">
|
2026-04-17 10:04:51 +02:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>de.componentware</groupId>
|
|
|
|
|
|
<artifactId>componentware-parent</artifactId>
|
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<artifactId>ejb-client</artifactId>
|
|
|
|
|
|
<packaging>jar</packaging>
|
2026-05-07 23:18:31 +02:00
|
|
|
|
<dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.wildfly</groupId>
|
|
|
|
|
|
<artifactId>wildfly-ejb-client-bom</artifactId>
|
|
|
|
|
|
<version>39.0.0.Final</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
</dependencyManagement>
|
2026-04-17 10:04:51 +02:00
|
|
|
|
<dependencies>
|
2026-05-07 23:18:31 +02:00
|
|
|
|
<!-- Server-Interfaces (Remote-Interface etc.) -->
|
2026-04-17 10:04:51 +02:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>de.componentware</groupId>
|
2026-04-17 10:23:25 +02:00
|
|
|
|
<artifactId>ejb-server</artifactId>
|
2026-04-17 10:04:51 +02:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
</dependency>
|
2026-05-07 23:18:31 +02:00
|
|
|
|
<!-- Artemis JMS Client (implementation) - must match the Artemis version bundled in WildFly -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
|
|
<artifactId>artemis-jakarta-client</artifactId>
|
|
|
|
|
|
<version>2.44.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- WildFly Naming Client (Remote JNDI) -->
|
2026-04-17 10:04:51 +02:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.wildfly</groupId>
|
2026-05-07 23:18:31 +02:00
|
|
|
|
<artifactId>wildfly-naming-client</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Jakarta Messaging API (JMS 3.1) – macht die JMS-Typen verfügbar -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>jakarta.jms</groupId>
|
|
|
|
|
|
<artifactId>jakarta.jms-api</artifactId>
|
|
|
|
|
|
<version>3.1.0</version>
|
2026-04-17 10:04:51 +02:00
|
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2026-05-07 23:18:31 +02:00
|
|
|
|
<version>3.13.0</version>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
|
|
<version>3.3.0</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<classpathScope>runtime</classpathScope>
|
|
|
|
|
|
</configuration>
|
2026-04-17 10:04:51 +02:00
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
</project>
|