|
19 | 19 | <properties> |
20 | 20 | <java.version>21</java.version> |
21 | 21 | </properties> |
22 | | - <!-- |
| 22 | + <!-- |
23 | 23 | Dependencies |
24 | 24 | ________________________________________________________________________________ |
25 | 25 | --> |
26 | 26 | <dependencies> |
27 | | - <!-- |
| 27 | + <!-- |
28 | 28 | Spring Boot Starter Web |
29 | 29 | Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat |
30 | 30 | as the default embedded container. |
|
36 | 36 | <artifactId>spring-boot-starter-web</artifactId> |
37 | 37 | <version>3.3.1</version> |
38 | 38 | </dependency> |
39 | | - <!-- |
| 39 | + <!-- |
40 | 40 | Spring Boot Starter Data JPA |
41 | 41 | Starter for using Spring Data JPA with Hibernate |
42 | 42 |
|
|
47 | 47 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
48 | 48 | <version>3.3.1</version> |
49 | 49 | </dependency> |
50 | | - <!-- |
| 50 | + <!-- |
51 | 51 | H2 Database Engine |
52 | 52 | Provides a fast in-memory database that supports JDBC API and R2DBC access, with a small |
53 | 53 | (2mb) footprint. Supports embedded and server modes as well as a browser based console |
|
72 | 72 | <artifactId>spring-boot-starter-validation</artifactId> |
73 | 73 | <version>3.3.0</version> |
74 | 74 | </dependency> |
75 | | - <!-- |
| 75 | + <!-- |
76 | 76 | ModelMapper |
77 | 77 | Simple, Intelligent, Object Mapping. |
78 | 78 |
|
79 | | - https://mvnrepository.com/artifact/org.modelmapper/modelmapper |
| 79 | + https://mvnrepository.com/artifact/org.modelmapper/modelmapper |
80 | 80 | --> |
81 | 81 | <dependency> |
82 | 82 | <groupId>org.modelmapper</groupId> |
83 | 83 | <artifactId>modelmapper</artifactId> |
84 | 84 | <version>3.2.0</version> |
85 | 85 | </dependency> |
86 | 86 |
|
87 | | - <!-- |
| 87 | + <!-- |
88 | 88 | Spring Boot Starter Security |
89 | 89 | Starter for using Spring Security. |
90 | | - |
| 90 | +
|
91 | 91 | https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security |
92 | 92 | --> |
93 | | - <!-- |
| 93 | + <!-- |
94 | 94 | <dependency> |
95 | 95 | <groupId>org.springframework.boot</groupId> |
96 | 96 | <artifactId>spring-boot-starter-security</artifactId> |
|
99 | 99 | <!-- |
100 | 100 | Spring Security Test |
101 | 101 | Spring Security |
102 | | - |
103 | | - https://mvnrepository.com/artifact/org.springframework.security/spring-security-test |
| 102 | +
|
| 103 | + https://mvnrepository.com/artifact/org.springframework.security/spring-security-test |
104 | 104 | --> |
105 | | - <!-- |
| 105 | + <!-- |
106 | 106 | <dependency> |
107 | 107 | <groupId>org.springframework.security</groupId> |
108 | 108 | <artifactId>spring-security-test</artifactId> |
109 | 109 | <scope>test</scope> |
110 | 110 | </dependency> |
111 | 111 | --> |
112 | | - <!-- |
| 112 | + <!-- |
113 | 113 | Spring Boot Starter Test |
114 | 114 | Starter for testing Spring Boot applications with libraries including JUnit Jupiter, |
115 | 115 | Hamcrest and Mockito. |
|
122 | 122 | <version>3.2.3</version> |
123 | 123 | <scope>test</scope> |
124 | 124 | </dependency> |
125 | | - <!-- |
| 125 | + <!-- |
126 | 126 | AssertJ Fluent Assertions |
127 | 127 | Rich and fluent assertions for testing for Java |
128 | 128 |
|
|
144 | 144 | <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
145 | 145 | <version>2.6.0</version> |
146 | 146 | </dependency> |
147 | | - <!-- |
| 147 | + <!-- |
148 | 148 | Spring Boot Starter Actuator |
149 | 149 | Starter for using Spring Boot's Actuator which provides production ready features to |
150 | 150 | help you monitor and manage your application |
151 | 151 |
|
152 | | - https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator |
| 152 | + https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator |
153 | 153 | --> |
154 | 154 | <dependency> |
155 | 155 | <groupId>org.springframework.boot</groupId> |
156 | 156 | <artifactId>spring-boot-starter-actuator</artifactId> |
157 | 157 | <version>3.3.0</version> |
158 | 158 | </dependency> |
159 | | - <!-- |
160 | | - CVE-2022-1471 |
| 159 | + <!-- |
| 160 | + CVE-2022-1471 |
161 | 161 | --> |
162 | | - <!-- |
| 162 | + <!-- |
163 | 163 | SnakeYAML |
164 | 164 | YAML 1.1 parser and emitter for Java |
165 | 165 |
|
|
170 | 170 | <artifactId>snakeyaml</artifactId> |
171 | 171 | <version>2.2</version> |
172 | 172 | </dependency> |
| 173 | + <!-- |
| 174 | + Spring Boot Starter Cache |
| 175 | + Starter for using Spring Framework's caching support |
| 176 | +
|
| 177 | + https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-cache |
| 178 | + --> |
| 179 | + <dependency> |
| 180 | + <groupId>org.springframework.boot</groupId> |
| 181 | + <artifactId>spring-boot-starter-cache</artifactId> |
| 182 | + <version>3.3.1</version> |
| 183 | + </dependency> |
173 | 184 | </dependencies> |
174 | 185 | <build> |
175 | | - <!-- |
| 186 | + <!-- |
176 | 187 | Plugins |
177 | 188 | ________________________________________________________________________________ |
178 | 189 | --> |
|
181 | 192 | <groupId>org.springframework.boot</groupId> |
182 | 193 | <artifactId>spring-boot-maven-plugin</artifactId> |
183 | 194 | </plugin> |
184 | | - <!-- |
| 195 | + <!-- |
185 | 196 | JaCoCo :: Maven Plugin |
186 | 197 | The JaCoCo Maven Plugin provides the JaCoCo runtime agent to your tests and allows |
187 | 198 | basic report creation. |
|
0 commit comments