Migrate all repos into monorepo context folders

Bahn: aisupport, Analyse-O2C-C2S, awesome-bahn-mcp-servers, beam-mcp,
      Confluence_Bot, db-planet-mcp-server, O2C-Harness, project-audit,
      Projekt-KIQ-HP, teamlandkarte-mcp
Dhive: Jury-Voting
Privat: CV, NoteGraph (NOTE: NoteGraph needs complete redo after consolidation)
Shared: AI-Orchestrator, OrgMyLife, power_skills_and_more
Shared/references: symphony (read-only)

Bahn repos remain available as independent remotes - this monorepo
pulls them in via subtree, the originals are untouched.
This commit is contained in:
2026-06-30 20:39:52 +02:00
parent 2f2b295531
commit a5f8fb49ab
1717 changed files with 447332 additions and 0 deletions
@@ -0,0 +1,325 @@
<?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>
<parent>
<groupId>com.dbnetz.bestellsystem</groupId>
<artifactId>bestellsystem-parent-pom</artifactId>
<version>1.8.0</version>
<relativePath>../bestellsystem-parent-pom</relativePath>
</parent>
<!--suppress MavenRedundantGroupId -->
<groupId>com.dbnetz.bestellsystem</groupId>
<artifactId>taftap-tdm-konverter</artifactId>
<version>1.7.1-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<!-- General -->
<java.version>21</java.version>
<maven.compiler.target>21</maven.compiler.target>
<skipTests>false</skipTests>
<!-- Signature Message -->
<signature-message.version>1.7.0</signature-message.version>
<!-- APIs -->
<partnerverwaltung.api.version>2.9.0</partnerverwaltung.api.version>
<eingangsnachricht.api.version>2.13.0</eingangsnachricht.api.version>
<taftap.api.version>3.8.0</taftap.api.version>
<versandauftrag.api.version>3.11.0</versandauftrag.api.version>
<versandergebnis.api.version>2.14.0</versandergebnis.api.version>
<ci-event-model.api.version>2.0.0</ci-event-model.api.version>
<maven-artifact.version>3.9.14</maven-artifact.version>
<!-- Dependencies -->
<logging-util.version>1.3.0</logging-util.version>
<jakarta.ws.rs-api.version>2.1.6</jakarta.ws.rs-api.version>
<dom4j.version>2.2.0</dom4j.version>
<jackson-datatype-jsr310.version>2.21.2</jackson-datatype-jsr310.version>
<!-- Kafka Dependencies -->
<spring-kafka.version>3.3.14</spring-kafka.version>
<aws-msk-iam-auth.version>2.3.5</aws-msk-iam-auth.version>
<!-- Test Dependencies -->
<mockito-inline.version>5.2.0</mockito-inline.version>
<assertj-core.version>3.27.7</assertj-core.version>
<togglz.version>4.6.1</togglz.version>
<!-- Plugins -->
<exec-maven-plugin.version>3.6.3</exec-maven-plugin.version>
<!-- Build -->
<buildDirectory>${project.basedir}/target</buildDirectory>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka</artifactId>
<version>${spring-kafka.version}</version>
<exclusions>
<!-- CVE-2025-12183 und CVE-2025-66566 -->
<exclusion>
<groupId>org.lz4</groupId>
<artifactId>lz4-java</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- CVE-2025-12183 und CVE-2025-66566 -->
<dependency>
<groupId>at.yawk.lz4</groupId>
<artifactId>lz4-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>software.amazon.msk</groupId>
<artifactId>aws-msk-iam-auth</artifactId>
<version>${aws-msk-iam-auth.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson-datatype-jsr310.version}</version>
</dependency>
<dependency>
<groupId>com.dbnetz.bestellsystem</groupId>
<artifactId>signature-message</artifactId>
<version>${signature-message.version}</version>
</dependency>
<dependency>
<groupId>com.dbnetz.bestellsystem.api</groupId>
<artifactId>partnerverwaltung</artifactId>
<version>${partnerverwaltung.api.version}</version>
</dependency>
<dependency>
<groupId>com.dbnetz.bestellsystem.api</groupId>
<artifactId>eingangsnachricht</artifactId>
<version>${eingangsnachricht.api.version}</version>
<exclusions>
<exclusion>
<groupId>com.dbnetz.bestellsystem</groupId>
<artifactId>data-model</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.dbnetz.bestellsystem.api</groupId>
<artifactId>versandergebnis</artifactId>
<version>${versandergebnis.api.version}</version>
<exclusions>
<exclusion>
<groupId>com.dbnetz.bestellsystem</groupId>
<artifactId>data-model</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.dbnetz.bestellsystem.api</groupId>
<artifactId>taftap</artifactId>
<version>${taftap.api.version}</version>
</dependency>
<dependency>
<groupId>com.dbnetz.bestellsystem.api</groupId>
<artifactId>versandauftrag</artifactId>
<version>${versandauftrag.api.version}</version>
<exclusions>
<exclusion>
<groupId>com.dbnetz.bestellsystem</groupId>
<artifactId>data-model</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.dbnetz.bestellsystem.api</groupId>
<artifactId>ci-event-model</artifactId>
<version>${ci-event-model.api.version}</version>
<exclusions>
<exclusion>
<groupId>com.dbnetz.bestellsystem</groupId>
<artifactId>data-model</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>${dom4j.version}</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>${mockito-inline.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.dbnetz.bestellsystem</groupId>
<artifactId>logging-util</artifactId>
<version>${logging-util.version}</version>
</dependency>
<!-- TTK needs to access KB as a client from a Resource Server -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-oauth2-client</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>${maven-artifact.version}</version>
</dependency>
<dependency>
<groupId>org.togglz</groupId>
<artifactId>togglz-spring-boot-starter</artifactId>
<version>${togglz.version}</version>
<exclusions>
<!-- CVE-2026-40477 und CVE-2026-40478 -->
<exclusion>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- findings tomcat-embed-core
GHSA-95jq-rwvf-vjx4, GHSA-69cc-cv78-qc8g,
GHSA-x4m4-345f-5h5g, GHSA-h468-7pvh-8vr8,
GHSA-rv64-5gf8-9qq8, GHSA-9m3c-qcxr-9x87,
GHSA-8mc5-53m5-3qj2, GHSA-24j9-x2wg-9qv6 -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>10.1.54</version>
</dependency>
<!-- findings log4j-core GHSA-3pxv-7cmr-fjr4e -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.25.4</version>
</dependency>
<!-- findings plexus-utils GHSA-6fmv-xxpf-w3cw -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>4.0.3</version>
</dependency>
</dependencies>
<build>
<directory>${buildDirectory}</directory>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<argLine>@{argLine} --add-opens java.xml/com.sun.org.apache.xerces.internal.jaxp.datatype=ALL-UNNAMED</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<configuration combine.self="override">
<excludes>
<exclude>**/it/*.*</exclude>
<exclude>**/test/*.*</exclude>
<exclude>**/*Configuration.*</exclude>
<exclude>**/*Config.*</exclude>
<exclude>**/*MetricKey.*</exclude>
<exclude>**/*WhitelistErrorCodeRange.*</exclude>
<exclude>**/exception/*.*</exclude>
<exclude>**/i18n/*.*</exclude>
<exclude>**/message/EventSource.*</exclude>
<exclude>**/message/MessageType.*</exclude>
<exclude>**/message/PartnerChannel.*</exclude>
<exclude>**/message/TafTapConstants.*</exclude>
<exclude>**/message/VersandErgebnisCode.*</exclude>
<exclude>**/message/wsdl/*.*</exclude>
<exclude>**/message/adapter/*.*</exclude>
<exclude>**/*Application.*</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>