Projekt

Obecné

Profil

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

    
37
        <dependency>
38
            <groupId>org.postgresql</groupId>
39
            <artifactId>postgresql</artifactId>
40
            <scope>runtime</scope>
41
        </dependency>
42

    
43
        <dependency>
44
            <groupId>org.springframework.boot</groupId>
45
            <artifactId>spring-boot-starter-data-jpa</artifactId>
46
        </dependency>
47

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

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

    
58
        <dependency>
59
            <groupId>org.springframework.security</groupId>
60
            <artifactId>spring-security-test</artifactId>
61
            <scope>test</scope>
62
        </dependency>
63

    
64
        <dependency>
65
            <groupId>org.apache.commons</groupId>
66
            <artifactId>commons-csv</artifactId>
67
            <version>1.9.0</version>
68
        </dependency>
69

    
70
        <dependency>
71
            <groupId>com.auth0</groupId>
72
            <artifactId>java-jwt</artifactId>
73
            <version>3.19.0</version>
74
        </dependency>
75

    
76
        <dependency>
77
            <groupId>com.google.guava</groupId>
78
            <artifactId>guava</artifactId>
79
            <version>31.1-jre</version>
80
        </dependency>
81

    
82
        <dependency>
83
            <groupId>org.springframework.boot</groupId>
84
            <artifactId>spring-boot-configuration-processor</artifactId>
85
            <version>2.4.2</version>
86
            <optional>true</optional>
87
        </dependency>
88

    
89
        <dependency>
90
            <groupId>org.springdoc</groupId>
91
            <artifactId>springdoc-openapi-ui</artifactId>
92
            <version>1.6.6</version>
93
        </dependency>
94
    </dependencies>
95

    
96
    <build>
97
        <plugins>
98
            <plugin>
99
                <groupId>org.springframework.boot</groupId>
100
                <artifactId>spring-boot-maven-plugin</artifactId>
101
                <configuration>
102
                    <excludes>
103
                        <exclude>
104
                            <groupId>org.projectlombok</groupId>
105
                            <artifactId>lombok</artifactId>
106
                        </exclude>
107
                    </excludes>
108
                </configuration>
109
            </plugin>
110
        </plugins>
111
    </build>
112

    
113
</project>
(5-5/5)