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

49
infrastructure/pom.xml Normal file
View File

@@ -0,0 +1,49 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.pablotj.restemailbridge</groupId>
<artifactId>restemailbridge</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>infrastructure</artifactId>
<dependencies>
<dependency>
<groupId>com.pablotj.restemailbridge</groupId>
<artifactId>domain</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.pablotj.restemailbridge</groupId>
<artifactId>application</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<!-- MapStruct -->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
</dependency>
<!-- Lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>