34 lines
1.1 KiB
XML
Executable File
34 lines
1.1 KiB
XML
Executable File
<?xml version="1.0"?>
|
|
<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>de.componentware</groupId>
|
|
<artifactId>componentware-parent</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<artifactId>ejb-uebung</artifactId>
|
|
<packaging>ejb</packaging>
|
|
<dependencies>
|
|
<!-- Jakarta EE 10 API (wird von WildFly bereitgestellt) -->
|
|
<dependency>
|
|
<groupId>jakarta.platform</groupId>
|
|
<artifactId>jakarta.jakartaee-api</artifactId>
|
|
<version>10.0.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-ejb-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<configuration>
|
|
<ejbVersion>4.0</ejbVersion>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|