Projekt

Obecné

Profil

Stáhnout (3.81 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>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>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.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

    
36
        <dependency>
37
            <groupId>com.h2database</groupId>
38
            <artifactId>h2</artifactId>
39
            <scope>test</scope>
40
        </dependency>
41

    
42
        <dependency>
43
            <groupId>org.postgresql</groupId>
44
            <artifactId>postgresql</artifactId>
45
            <scope>runtime</scope>
46
        </dependency>
47

    
48
        <dependency>
49
            <groupId>org.springframework.boot</groupId>
50
            <artifactId>spring-boot-starter-data-jpa</artifactId>
51
        </dependency>
52

    
53
        <dependency>
54
            <groupId>org.springframework.boot</groupId>
55
            <artifactId>spring-boot-starter-validation</artifactId>
56
        </dependency>
57

    
58
        <dependency>
59
            <groupId>org.springframework.boot</groupId>
60
            <artifactId>spring-boot-starter-security</artifactId>
61
        </dependency>
62

    
63
        <dependency>
64
            <groupId>org.springframework.security</groupId>
65
            <artifactId>spring-security-test</artifactId>
66
            <scope>test</scope>
67
        </dependency>
68

    
69
        <dependency>
70
            <groupId>org.apache.commons</groupId>
71
            <artifactId>commons-csv</artifactId>
72
            <version>1.9.0</version>
73
        </dependency>
74

    
75
        <dependency>
76
            <groupId>com.auth0</groupId>
77
            <artifactId>java-jwt</artifactId>
78
            <version>3.19.0</version>
79
        </dependency>
80

    
81
        <dependency>
82
            <groupId>com.google.guava</groupId>
83
            <artifactId>guava</artifactId>
84
            <version>31.1-jre</version>
85
        </dependency>
86

    
87
        <dependency>
88
            <groupId>org.springframework.boot</groupId>
89
            <artifactId>spring-boot-configuration-processor</artifactId>
90
            <version>2.6.5</version>
91
            <optional>true</optional>
92
        </dependency>
93

    
94
        <dependency>
95
            <groupId>org.springdoc</groupId>
96
            <artifactId>springdoc-openapi-ui</artifactId>
97
            <version>1.6.6</version>
98
        </dependency>
99
    </dependencies>
100

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

    
118
</project>
(15-15/15)