Projekt

Obecné

Profil

Stáhnout (4.48 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
    <modelVersion>4.0.0</modelVersion>
5

    
6
    <groupId>org.danekja</groupId>
7
    <artifactId>ymanager</artifactId>
8
    <version>1.0-SNAPSHOT</version>
9

    
10
    <parent>
11
        <groupId>org.springframework.boot</groupId>
12
        <artifactId>spring-boot-starter-parent</artifactId>
13
        <version>2.0.5.RELEASE</version>
14
    </parent>
15

    
16
    <properties>
17
        <java.version>1.8</java.version>
18
        <maven.compiler.source>1.8</maven.compiler.source>
19
        <maven.compiler.target>1.8</maven.compiler.target>
20
    </properties>
21

    
22
    <dependencies>
23
        <dependency>
24
            <groupId>org.springframework.boot</groupId>
25
            <artifactId>spring-boot-starter-web</artifactId>
26
        </dependency>
27
        <dependency>
28
            <groupId>org.springframework.boot</groupId>
29
            <artifactId>spring-boot-starter-security</artifactId>
30
        </dependency>
31

    
32
        <dependency>
33
            <groupId>org.springframework.security</groupId>
34
            <artifactId>spring-security-oauth2-client</artifactId>
35
        </dependency>
36
        <dependency>
37
            <groupId>org.springframework.security</groupId>
38
            <artifactId>spring-security-oauth2-jose</artifactId>
39
        </dependency>
40

    
41
        <dependency>
42
            <groupId>org.apache.commons</groupId>
43
            <artifactId>commons-lang3</artifactId>
44
            <version>3.9</version>
45
        </dependency>
46

    
47
        <dependency>
48
            <groupId>org.apache.poi</groupId>
49
            <artifactId>poi-ooxml</artifactId>
50
            <version>4.1.0</version>
51
        </dependency>
52

    
53
        <dependency>
54
            <groupId>org.apache.pdfbox</groupId>
55
            <artifactId>pdfbox</artifactId>
56
            <version>2.0.15</version>
57
        </dependency>
58

    
59
        <dependency>
60
            <groupId>com.github.dhorions</groupId>
61
            <artifactId>boxable</artifactId>
62
            <version>1.5</version>
63
        </dependency>
64

    
65

    
66
        <!-- DATABASE -->
67
        <dependency>
68
            <groupId>org.springframework.boot</groupId>
69
            <artifactId>spring-boot-starter-jdbc</artifactId>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.mariadb.jdbc</groupId>
73
            <artifactId>mariadb-java-client</artifactId>
74
            <version>2.4.1</version>
75
        </dependency>
76

    
77

    
78
        <!-- TESTS -->
79
        <dependency>
80
            <groupId>org.springframework.boot</groupId>
81
            <artifactId>spring-boot-starter-test</artifactId>
82
            <scope>test</scope>
83
        </dependency>
84
        <dependency>
85
            <groupId>org.junit.jupiter</groupId>
86
            <artifactId>junit-jupiter-api</artifactId>
87
            <scope>test</scope>
88
        </dependency>
89
        <dependency>
90
            <groupId>org.mockito</groupId>
91
            <artifactId>mockito-core</artifactId>
92
            <version>2.25.1</version>
93
            <scope>test</scope>
94
        </dependency>
95
    </dependencies>
96

    
97

    
98
    <build>
99
        <plugins>
100
            <plugin>
101
                <groupId>org.springframework.boot</groupId>
102
                <artifactId>spring-boot-maven-plugin</artifactId>
103
                <executions>
104
                    <execution>
105
                        <goals>
106
                            <goal>repackage</goal>
107
                        </goals>
108
                        <configuration>
109
                            <mainClass>org.danekja.ymanager.Application</mainClass>
110
                        </configuration>
111
                    </execution>
112
                </executions>
113
            </plugin>
114
            <plugin>
115
                <groupId>org.apache.maven.plugins</groupId>
116
                <artifactId>maven-surefire-plugin</artifactId>
117
                <version>2.19.1</version>
118
                <dependencies>
119
                    <dependency>
120
                        <groupId>org.junit.platform</groupId>
121
                        <artifactId>junit-platform-surefire-provider</artifactId>
122
                        <version>1.1.0</version>
123
                    </dependency>
124
                    <dependency>
125
                        <groupId>org.junit.jupiter</groupId>
126
                        <artifactId>junit-jupiter-engine</artifactId>
127
                        <version>5.1.0</version>
128
                    </dependency>
129
                </dependencies>
130
            </plugin>
131
        </plugins>
132
    </build>
133

    
134
</project>
(9-9/9)