<?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>jdbc-parent</artifactId>
    <version>2026.6.2</version>
    <relativePath>../jdbc-parent</relativePath>
  </parent>

  <artifactId>jdbc-util</artifactId>

  <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>

  <dependencies>

    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>${commons-logging.version}</version>
    </dependency>

    <dependency>
      <groupId>de.gedoplan.edumat-support</groupId>
      <artifactId>junit4</artifactId>
      <type>pom</type>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>de.gedoplan.edumat-support</groupId>
      <artifactId>logging-log4j2</artifactId>
      <type>pom</type>
      <scope>test</scope>
    </dependency>

  </dependencies>

  <profiles>

    <profile>
      <!-- Profil zum Start eines Derby-Server (mittels Ant-Skript build.xml) -->
      <id>derby_server</id>
      <dependencies>
        <dependency>
          <groupId>org.apache.derby</groupId>
          <artifactId>derby</artifactId>
          <scope>runtime</scope>
        </dependency>
        <dependency>
          <groupId>org.apache.derby</groupId>
          <artifactId>derbyclient</artifactId>
          <scope>runtime</scope>
        </dependency>
        <dependency>
          <groupId>org.apache.derby</groupId>
          <artifactId>derbynet</artifactId>
          <scope>runtime</scope>
        </dependency>
      </dependencies>
    </profile>

  </profiles>

</project>