|
29 | 29 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
30 | 30 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
31 | 31 | <modelVersion>4.0.0</modelVersion> |
32 | | - <parent> |
| 32 | + |
| 33 | + <parent> |
33 | 34 | <groupId>com.iluwatar</groupId> |
34 | | - <artifactId>java-design-patterns</artifactId> |
35 | | - <version>1.26.0-SNAPSHOT</version> |
36 | | - </parent> |
| 35 | + <artifactId>java-design-patterns</artifactId> |
| 36 | + <version>1.26.0-SNAPSHOT</version> |
| 37 | + </parent> |
37 | 38 |
|
38 | 39 | <artifactId>Monolithic-Ecommerce</artifactId> |
39 | 40 |
|
| 41 | + |
40 | 42 | <dependencies> |
41 | 43 | <!-- Spring Boot Starter Web --> |
42 | 44 | <dependency> |
43 | | - <groupId>org.springframework.boot</groupId> |
44 | | - <artifactId>spring-boot-starter-web</artifactId> |
| 45 | + <groupId>org.springframework.boot</groupId> |
| 46 | + <artifactId>spring-boot-starter-web</artifactId> |
45 | 47 | </dependency> |
46 | 48 |
|
47 | 49 | <!-- Spring Boot Starter Data JPA --> |
48 | 50 | <dependency> |
49 | | - <groupId>org.springframework.boot</groupId> |
50 | | - <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 51 | + <groupId>org.springframework.boot</groupId> |
| 52 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
51 | 53 | </dependency> |
52 | 54 |
|
53 | | - <!-- H2 Database for in-memory persistence --> |
| 55 | + <!-- H2 Database --> |
54 | 56 | <dependency> |
55 | | - <groupId>com.h2database</groupId> |
56 | | - <artifactId>h2</artifactId> |
57 | | - <scope>runtime</scope> |
| 57 | + <groupId>com.h2database</groupId> |
| 58 | + <artifactId>h2</artifactId> |
| 59 | + <scope>runtime</scope> |
58 | 60 | </dependency> |
59 | 61 |
|
60 | | - <!-- JUnit for Testing --> |
61 | | - <dependency> |
62 | | - <groupId>org.junit.jupiter</groupId> |
63 | | - <artifactId>junit-jupiter-engine</artifactId> |
64 | | - <scope>test</scope> |
65 | | - </dependency> |
66 | | - <!-- Jakarta persistance API --> |
67 | | - <dependency> |
68 | | - <groupId>jakarta.persistence</groupId> |
69 | | - <artifactId>jakarta.persistence-api</artifactId> |
70 | | - <version>3.1.0</version> |
71 | | - </dependency> |
| 62 | + <!-- Jakarta Persistence API --> |
| 63 | + <dependency> |
| 64 | + <groupId>jakarta.persistence</groupId> |
| 65 | + <artifactId>jakarta.persistence-api</artifactId> |
| 66 | + <version>3.1.0</version> |
| 67 | + </dependency> |
72 | 68 |
|
73 | | - <!-- Mockito for Unit Testing --> |
| 69 | + <!-- JUnit for Testing --> |
74 | 70 | <dependency> |
75 | | - <groupId>org.mockito</groupId> |
76 | | - <artifactId>mockito-core</artifactId> |
77 | | - <scope>test</scope> |
| 71 | + <groupId>org.junit.jupiter</groupId> |
| 72 | + <artifactId>junit-jupiter-engine</artifactId> |
| 73 | + <scope>test</scope> |
78 | 74 | </dependency> |
79 | 75 |
|
80 | | - <!-- Lombok --> |
| 76 | + <!-- Mockito for Unit Testing --> |
81 | 77 | <dependency> |
82 | | - <groupId>org.projectlombok</groupId> |
83 | | - <artifactId>lombok</artifactId> |
84 | | - <scope>provided</scope> |
| 78 | + <groupId>org.mockito</groupId> |
| 79 | + <artifactId>mockito-core</artifactId> |
| 80 | + <scope>test</scope> |
85 | 81 | </dependency> |
86 | | - <dependency> |
87 | | - <groupId>jakarta.persistence</groupId> |
88 | | - <artifactId>jakarta.persistence-api</artifactId> |
89 | | - </dependency> |
90 | | - <dependency> |
91 | | - <groupId>jakarta.persistence</groupId> |
92 | | - <artifactId>jakarta.persistence-api</artifactId> |
93 | | - </dependency> |
94 | 82 | </dependencies> |
95 | | - |
96 | | - |
97 | | - <build> |
98 | | - <plugins> |
99 | | - <plugin> |
100 | | - <groupId>org.springframework.boot</groupId> |
101 | | - <artifactId>spring-boot-maven-plugin</artifactId> |
102 | | - </plugin> |
103 | | - </plugins> |
104 | | - </build> |
105 | 83 | </project> |
106 | 84 |
|
107 | 85 |
|
0 commit comments