-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
47 lines (41 loc) · 1.5 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.example</groupId>
<artifactId>easy-cab</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging> <!-- Esto indica que es el padre -->
<properties>
<java.version>21</java.version>
<!-- Definir versión de Lombok -->
<lombok.version>1.18.30</lombok.version>
</properties>
<modules>
<module>EC_Central</module>
<module>EC_DE</module>
<module>EC_Customer</module>
<module>EC_S</module>
<module>EC_CTC</module>
<module>EC_Registry</module>
<!-- Aquí puedes agregar otros módulos que tengas -->
</modules>
<dependencies>
<!-- Lombok estará disponible para todos los submódulos -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
</plugins>
</build>
</project>