chore: initialize project structure with hexagonal architecture and H2 database for development

This commit is contained in:
2025-09-10 18:45:26 +02:00
parent bd229bbb6b
commit 4053c6fa46
9 changed files with 728 additions and 0 deletions

20
domain/pom.xml Normal file
View File

@@ -0,0 +1,20 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.pablotj.restemailbridge</groupId>
<artifactId>restemailbridge</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>domain</artifactId>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
</dependencies>
</project>