<?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/maven-v4_0_0.xsd">

  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>de.gedoplan.edumat-support</groupId>
    <artifactId>jakartaee-parent</artifactId>
    <version>2026.6.2</version>
    <relativePath>../jakartaee-parent</relativePath>
  </parent>

  <artifactId>jee-parent</artifactId>

  <packaging>pom</packaging>

  <name>${project.groupId}:${project.artifactId}</name>
  <description>GEDOPLAN support for training projects</description>
  <url>https://wiki.gedoplan.de/bin/view/Training/</url>

  <developers>
    <developer>
      <name>Dirk Weil</name>
      <email>dirk.weil@gedoplan.de</email>
      <organization>GEDOPLAN GmbH</organization>
      <organizationUrl>https://www.gedoplan.de</organizationUrl>
    </developer>
  </developers>

  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-enforcer-plugin</artifactId>
        <executions>
          <execution>
            <id>Deprecate jee-parent</id>
            <phase>validate</phase>
            <goals>
              <goal>enforce</goal>
            </goals>
            <configuration>
              <rules>
                <alwaysFail>
                  <message>jee-parent is deprecated; switch to jakartaee-parent</message>
                </alwaysFail>
              </rules>
              <fail>false</fail>
            </configuration>
          </execution>
        </executions>
      </plugin>

    </plugins>
  </build>

</project>