## Nouveaux packages DTO / enums - dto/kyc/ : NiveauRisqueKyc, TypePieceIdentite, KycDossier DTOs - dto/messagerie/ : conversation/message DTOs + enums (TypeConversation, etc.) - dto/mutuelle/financier/ : ParametresFinanciersMutuelle DTOs - dto/mutuelle/parts/ : ComptePartsSociales, TransactionPartsSociales DTOs - dto/versement/ : Versement DTOs - payment/ : PaymentProvider, PaymentStatus, PaymentException, CheckoutRequest, CheckoutSession, PaymentEvent (SPI paiement unifié) ## Paiement enrichi - CreatePaiementRequest, DeclarerPaiementManuelRequest, InitierPaiementEnLigneRequest - IntentionStatutResponse, PaiementGatewayResponse, PaiementResponse, PaiementSummaryResponse - Tests correspondants mis à jour ## Tests nouveaux - DTOs agricole, ayant-droit, backup tests - Tous les nouveaux DTOs KYC/messagerie/mutuelle/versement/payment ## Build - pom.xml : version 1.0.5, parent-pom.xml aligné - script/publish-api.sh : version bumped 164 fichiers, +8 481 insertions. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
96 lines
3.5 KiB
XML
96 lines
3.5 KiB
XML
<?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>
|
|
|
|
<groupId>dev.lions.unionflow</groupId>
|
|
<artifactId>unionflow-parent</artifactId>
|
|
<version>1.0.5</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>UnionFlow - Parent</name>
|
|
<description>Plateforme complète de gestion d'union — POM parent partagé</description>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>gitea-lionsdev</id>
|
|
<url>https://git.lions.dev/api/packages/lionsdev/maven</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>gitea-lionsdev</id>
|
|
<url>https://git.lions.dev/api/packages/lionsdev/maven</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>gitea-lionsdev</id>
|
|
<url>https://git.lions.dev/api/packages/lionsdev/maven</url>
|
|
<releases><enabled>true</enabled></releases>
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<properties>
|
|
<maven.compiler.release>21</maven.compiler.release>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<quarkus.platform.version>3.20.0</quarkus.platform.version>
|
|
<lombok.version>1.18.36</lombok.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>jakarta.annotation</groupId>
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
|
<version>3.0.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.34</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.lions.unionflow</groupId>
|
|
<artifactId>unionflow-server-api</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.13.0</version>
|
|
<configuration>
|
|
<release>21</release>
|
|
<encoding>UTF-8</encoding>
|
|
<parameters>true</parameters>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|