Projekt

Obecné

Profil

Stáhnout (4.15 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.apache.commons</groupId>
34
            <artifactId>commons-lang3</artifactId>
35
            <version>3.9</version>
36
        </dependency>
37

    
38
        <dependency>
39
            <groupId>org.apache.poi</groupId>
40
            <artifactId>poi-ooxml</artifactId>
41
            <version>4.1.0</version>
42
        </dependency>
43

    
44
        <dependency>
45
            <groupId>org.apache.pdfbox</groupId>
46
            <artifactId>pdfbox</artifactId>
47
            <version>2.0.15</version>
48
        </dependency>
49

    
50
        <dependency>
51
            <groupId>com.github.dhorions</groupId>
52
            <artifactId>boxable</artifactId>
53
            <version>1.5</version>
54
        </dependency>
55

    
56

    
57
        <!-- DATABASE -->
58
        <dependency>
59
            <groupId>org.springframework.boot</groupId>
60
            <artifactId>spring-boot-starter-jdbc</artifactId>
61
        </dependency>
62
        <dependency>
63
            <groupId>org.mariadb.jdbc</groupId>
64
            <artifactId>mariadb-java-client</artifactId>
65
            <version>2.4.1</version>
66
        </dependency>
67

    
68

    
69
        <!-- TESTS -->
70
        <dependency>
71
            <groupId>org.springframework.boot</groupId>
72
            <artifactId>spring-boot-starter-test</artifactId>
73
            <scope>test</scope>
74
        </dependency>
75
        <dependency>
76
            <groupId>org.junit.jupiter</groupId>
77
            <artifactId>junit-jupiter-api</artifactId>
78
            <scope>test</scope>
79
        </dependency>
80
        <dependency>
81
            <groupId>org.mockito</groupId>
82
            <artifactId>mockito-core</artifactId>
83
            <version>2.25.1</version>
84
            <scope>test</scope>
85
        </dependency>
86
    </dependencies>
87

    
88

    
89
    <build>
90
        <plugins>
91
            <plugin>
92
                <groupId>org.springframework.boot</groupId>
93
                <artifactId>spring-boot-maven-plugin</artifactId>
94
                <executions>
95
                    <execution>
96
                        <goals>
97
                            <goal>repackage</goal>
98
                        </goals>
99
                        <configuration>
100
                            <mainClass>org.danekja.ymanager.Application</mainClass>
101
                        </configuration>
102
                    </execution>
103
                </executions>
104
            </plugin>
105
            <plugin>
106
                <groupId>org.apache.maven.plugins</groupId>
107
                <artifactId>maven-surefire-plugin</artifactId>
108
                <version>2.19.1</version>
109
                <dependencies>
110
                    <dependency>
111
                        <groupId>org.junit.platform</groupId>
112
                        <artifactId>junit-platform-surefire-provider</artifactId>
113
                        <version>1.1.0</version>
114
                    </dependency>
115
                    <dependency>
116
                        <groupId>org.junit.jupiter</groupId>
117
                        <artifactId>junit-jupiter-engine</artifactId>
118
                        <version>5.1.0</version>
119
                    </dependency>
120
                </dependencies>
121
            </plugin>
122
        </plugins>
123
    </build>
124

    
125
</project>
(7-7/7)