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:
@@ -0,0 +1,298 @@
|
||||
<?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>common-interface</artifactId>
|
||||
<version>1.8.1-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<!-- General -->
|
||||
<java.version>21</java.version>
|
||||
<maven.compiler.target>21</maven.compiler.target>
|
||||
<skipTests>false</skipTests>
|
||||
|
||||
<!-- APIs -->
|
||||
<trassenanmeldung.api.version>8.11.0</trassenanmeldung.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.version>2.0.0</ci.event.model.version>
|
||||
<partnerverwaltung.api.version>2.9.0</partnerverwaltung.api.version>
|
||||
|
||||
<!-- Dependencies -->
|
||||
<logging-util.version>1.3.0</logging-util.version>
|
||||
<signature-message.version>1.7.0</signature-message.version>
|
||||
<jakarta.ws.rs-api.version>2.1.6</jakarta.ws.rs-api.version>
|
||||
<dom4j.version>2.2.0</dom4j.version>
|
||||
<logback.version>1.4.14</logback.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>
|
||||
|
||||
<!-- Plugins -->
|
||||
<exec-maven-plugin.version>3.6.3</exec-maven-plugin.version>
|
||||
|
||||
<!-- Build -->
|
||||
<buildDirectory>${project.basedir}/target</buildDirectory>
|
||||
<jaxb-api.version>2.3.1</jaxb-api.version>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- 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>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
<dependency><!-- IT Start Fehler ohne diese Dependency -->
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
<version>${jaxb-api.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web-services</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-security</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.ws</groupId>
|
||||
<artifactId>spring-ws-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-aop</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-validation</artifactId>
|
||||
<version>${spring.boot.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- CI 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>com.dbnetz.bestellsystem.api</groupId>
|
||||
<artifactId>versandergebnis</artifactId>
|
||||
<version>${versandergebnis.api.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>com.dbnetz.bestellsystem.api</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>ci-event-model</artifactId>
|
||||
<version>${ci.event.model.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.dbnetz.bestellsystem.api</groupId>
|
||||
<artifactId>versandauftrag</artifactId>
|
||||
<version>${versandauftrag.api.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>com.dbnetz.bestellsystem.api</groupId>
|
||||
<artifactId>data-model</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.dbnetz.bestellsystem.api</groupId>
|
||||
<artifactId>trassenanmeldung</artifactId>
|
||||
<version>${trassenanmeldung.api.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>com.dbnetz.bestellsystem.api</groupId>
|
||||
<artifactId>data-model</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.dbnetz.bestellsystem.api</groupId>
|
||||
<artifactId>partnerverwaltung</artifactId>
|
||||
<version>${partnerverwaltung.api.version}</version>
|
||||
</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>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.dbnetz.bestellsystem</groupId>
|
||||
<artifactId>signature-message</artifactId>
|
||||
<version>${signature-message.version}</version>
|
||||
</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>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-cache</artifactId>
|
||||
</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>**/CommonInterfaceApplication.*</exclude>
|
||||
<exclude>**/*Configuration.*</exclude>
|
||||
<exclude>**/*Config.*</exclude>
|
||||
<exclude>**/*Properties.*</exclude>
|
||||
<exclude>**/*Exception.*</exclude>
|
||||
<exclude>**/repository/**/*</exclude>
|
||||
<exclude>**/logging/**/*</exclude>
|
||||
<exclude>**/ci/model/**/*</exclude>
|
||||
<exclude>**/ci/api/**/*</exclude>
|
||||
<exclude>**/ci/config/partner/BackendPartnerSetup.*</exclude>
|
||||
<exclude>**/ci/config/partner/BackendPartnersSettings.*</exclude>
|
||||
<exclude>**/boundary/messaging/model/**/*</exclude>
|
||||
<exclude>**/*MessageResponseInfo.*</exclude>
|
||||
|
||||
<exclude>**/HealthCheck.*</exclude>
|
||||
<exclude>**/*HealthIndicator.*</exclude>
|
||||
<exclude>**/TafTapConstants.*</exclude>
|
||||
<exclude>**/MessageKey.*</exclude>
|
||||
<exclude>**/*Type.*</exclude>
|
||||
<exclude>**/*Info.*</exclude>
|
||||
<exclude>**/*Probe.*</exclude>
|
||||
<exclude>**/SteuerungVertriebServiceHealthIndicator.*</exclude>
|
||||
|
||||
<exclude>**/gateway/heartbeat/**.*</exclude>
|
||||
<exclude>**/control/partner/PartnerSetup.*</exclude>
|
||||
<exclude>**/control/partner/PartnerSettings.*</exclude>
|
||||
<exclude>**/NspNames.*</exclude>
|
||||
<exclude>**/messaging/wsdl/**/*</exclude>
|
||||
|
||||
<exclude>**/metrics/**/*</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>
|
||||
|
||||
Reference in New Issue
Block a user