Projekt

Obecné

Profil

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

    
28
        <dependency>
29
            <groupId>org.apache.commons</groupId>
30
            <artifactId>commons-lang3</artifactId>
31
            <version>3.9</version>
32
        </dependency>
33

    
34
        <dependency>
35
            <groupId>org.apache.poi</groupId>
36
            <artifactId>poi-ooxml</artifactId>
37
            <version>4.1.0</version>
38
        </dependency>
39

    
40
        <dependency>
41
            <groupId>org.apache.pdfbox</groupId>
42
            <artifactId>pdfbox</artifactId>
43
            <version>2.0.15</version>
44
        </dependency>
45

    
46
        <dependency>
47
            <groupId>com.github.dhorions</groupId>
48
            <artifactId>boxable</artifactId>
49
            <version>1.5</version>
50
        </dependency>
51

    
52

    
53
        <!-- DATABASE -->
54
        <dependency>
55
            <groupId>org.springframework.boot</groupId>
56
            <artifactId>spring-boot-starter-jdbc</artifactId>
57
        </dependency>
58
        <dependency>
59
            <groupId>org.mariadb.jdbc</groupId>
60
            <artifactId>mariadb-java-client</artifactId>
61
            <version>2.4.1</version>
62
        </dependency>
63

    
64

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

    
84

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

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