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>
|
5
|
<parent>
|
6
|
<groupId>org.springframework.boot</groupId>
|
7
|
<artifactId>spring-boot-starter-parent</artifactId>
|
8
|
<version>2.6.4</version>
|
9
|
<relativePath/>
|
10
|
</parent>
|
11
|
<groupId>cz.zcu.kiv</groupId>
|
12
|
<artifactId>backend-api</artifactId>
|
13
|
<version>0.0.1-SNAPSHOT</version>
|
14
|
<name>backend-api</name>
|
15
|
<description>Backend API for Neo-assyrian web application</description>
|
16
|
<properties>
|
17
|
<java.version>17</java.version>
|
18
|
</properties>
|
19
|
<dependencies>
|
20
|
<dependency>
|
21
|
<groupId>org.springframework.boot</groupId>
|
22
|
<artifactId>spring-boot-starter-web</artifactId>
|
23
|
</dependency>
|
24
|
|
25
|
<dependency>
|
26
|
<groupId>org.projectlombok</groupId>
|
27
|
<artifactId>lombok</artifactId>
|
28
|
<optional>true</optional>
|
29
|
</dependency>
|
30
|
<dependency>
|
31
|
<groupId>org.springframework.boot</groupId>
|
32
|
<artifactId>spring-boot-starter-test</artifactId>
|
33
|
<scope>test</scope>
|
34
|
</dependency>
|
35
|
</dependencies>
|
36
|
|
37
|
<build>
|
38
|
<plugins>
|
39
|
<plugin>
|
40
|
<groupId>org.springframework.boot</groupId>
|
41
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
42
|
<configuration>
|
43
|
<excludes>
|
44
|
<exclude>
|
45
|
<groupId>org.projectlombok</groupId>
|
46
|
<artifactId>lombok</artifactId>
|
47
|
</exclude>
|
48
|
</excludes>
|
49
|
</configuration>
|
50
|
</plugin>
|
51
|
</plugins>
|
52
|
</build>
|
53
|
|
54
|
</project>
|