1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4
<modelVersion>4.0.0</modelVersion>
6
<groupId>org.springframework.boot</groupId>
7
<artifactId>spring-boot-starter-parent</artifactId>
8
<version>3.2.2</version>
11
<groupId>ru.fedorov.spring</groupId>
12
<artifactId>SpacexAPI</artifactId>
13
<version>0.0.1-SNAPSHOT</version>
14
<name>SpacexAPI</name>
15
<description>Spring REST application for SpaceX</description>
17
<java.version>21</java.version>
21
<groupId>org.springframework.boot</groupId>
22
<artifactId>spring-boot-starter-data-jpa</artifactId>
25
<groupId>org.springframework.boot</groupId>
26
<artifactId>spring-boot-starter-thymeleaf</artifactId>
29
<groupId>org.springframework.boot</groupId>
30
<artifactId>spring-boot-starter-web</artifactId>
34
<groupId>org.postgresql</groupId>
35
<artifactId>postgresql</artifactId>
36
<scope>runtime</scope>
39
<groupId>org.springframework.boot</groupId>
40
<artifactId>spring-boot-starter-test</artifactId>
45
<groupId>org.modelmapper</groupId>
46
<artifactId>modelmapper</artifactId>
47
<version>3.2.0</version>
51
<groupId>org.projectlombok</groupId>
52
<artifactId>lombok</artifactId>
53
<optional>true</optional>
61
<groupId>org.springframework.boot</groupId>
62
<artifactId>spring-boot-maven-plugin</artifactId>
63
<version>3.2.2</version>