Projekt

Obecné

Profil

Stáhnout (3.91 KB) Statistiky
| Větev: | Tag: | Revize:
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>1.0.0</version>
14
    <name>backend-api</name>
15
    <description>Backend API for Neo-assyrian web application</description>
16
    <properties>
17
        <java.version>11</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.springframework.boot</groupId>
27
            <artifactId>spring-boot-configuration-processor</artifactId>
28
            <optional>true</optional>
29
        </dependency>
30

    
31
        <dependency>
32
            <groupId>org.springframework.boot</groupId>
33
            <artifactId>spring-boot-starter-test</artifactId>
34
            <scope>test</scope>
35
        </dependency>
36

    
37
        <dependency>
38
            <groupId>org.springframework.boot</groupId>
39
            <artifactId>spring-boot-starter-data-jpa</artifactId>
40
        </dependency>
41

    
42
        <dependency>
43
            <groupId>org.springframework.boot</groupId>
44
            <artifactId>spring-boot-starter-validation</artifactId>
45
        </dependency>
46

    
47
        <dependency>
48
            <groupId>org.springframework.boot</groupId>
49
            <artifactId>spring-boot-starter-security</artifactId>
50
        </dependency>
51

    
52
        <dependency>
53
            <groupId>org.springframework.security</groupId>
54
            <artifactId>spring-security-test</artifactId>
55
            <scope>test</scope>
56
            <version>5.6.2</version>
57
        </dependency>
58

    
59
        <dependency>
60
            <groupId>org.projectlombok</groupId>
61
            <artifactId>lombok</artifactId>
62
            <optional>true</optional>
63
            <version>1.18.22</version>
64
        </dependency>
65

    
66
        <dependency>
67
            <groupId>com.h2database</groupId>
68
            <artifactId>h2</artifactId>
69
            <scope>test</scope>
70
            <version>2.1.210</version>
71
        </dependency>
72

    
73
        <dependency>
74
            <groupId>org.postgresql</groupId>
75
            <artifactId>postgresql</artifactId>
76
            <scope>runtime</scope>
77
            <version>42.3.3</version>
78
        </dependency>
79

    
80
        <dependency>
81
            <groupId>org.apache.commons</groupId>
82
            <artifactId>commons-csv</artifactId>
83
            <version>1.9.0</version>
84
        </dependency>
85

    
86
        <dependency>
87
            <groupId>com.auth0</groupId>
88
            <artifactId>java-jwt</artifactId>
89
            <version>3.19.1</version>
90
        </dependency>
91

    
92
        <dependency>
93
            <groupId>com.google.guava</groupId>
94
            <artifactId>guava</artifactId>
95
            <version>31.1-jre</version>
96
        </dependency>
97

    
98
        <dependency>
99
            <groupId>org.springdoc</groupId>
100
            <artifactId>springdoc-openapi-ui</artifactId>
101
            <version>1.6.7</version>
102
        </dependency>
103
    </dependencies>
104

    
105
    <build>
106
        <plugins>
107
            <plugin>
108
                <groupId>org.springframework.boot</groupId>
109
                <artifactId>spring-boot-maven-plugin</artifactId>
110
                <configuration>
111
                    <excludes>
112
                        <exclude>
113
                            <groupId>org.projectlombok</groupId>
114
                            <artifactId>lombok</artifactId>
115
                        </exclude>
116
                    </excludes>
117
                </configuration>
118
            </plugin>
119
        </plugins>
120
    </build>
121

    
122
</project>
(16-16/16)