Projekt

Obecné

Profil

Stáhnout (2.41 KB) Statistiky
| Větev: | Tag: | Revize:
1 af223c76 Tomáš Šimandl
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
    <modelVersion>4.0.0</modelVersion>
6
7 69a0ca98 Pavel Fidranský
    <parent>
8
        <artifactId>imiger</artifactId>
9
        <groupId>cz.zcu.kiv</groupId>
10
        <version>0.1.2-SNAPSHOT</version>
11
        <relativePath>../pom.xml</relativePath>
12
    </parent>
13
14 af223c76 Tomáš Šimandl
    <groupId>com.example.plugin</groupId>
15
    <artifactId>imiger-plugin-template</artifactId>
16
    <version>1.0-SNAPSHOT</version>
17
    <packaging>jar</packaging>
18
19
    <properties>
20
        <maven.compiler.source>1.8</maven.compiler.source>
21
        <maven.compiler.target>1.8</maven.compiler.target>
22
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23
    </properties>
24
25
    <build>
26
        <plugins>
27
            <plugin>
28
                <groupId>org.apache.maven.plugins</groupId>
29 22d0b32a Pavel Fidranský
                <artifactId>maven-jar-plugin</artifactId>
30
                <version>3.1.1</version>
31 af223c76 Tomáš Šimandl
            </plugin>
32
        </plugins>
33
    </build>
34
35
    <dependencies>
36 69a0ca98 Pavel Fidranský
        <dependency>
37
            <groupId>cz.zcu.kiv</groupId>
38 32dc92ef Pavel Fidranský
            <artifactId>imiger-module</artifactId>
39 69a0ca98 Pavel Fidranský
            <version>0.1.2-SNAPSHOT</version>
40
        </dependency>
41
42 af223c76 Tomáš Šimandl
        <!-- Lib for JSON handling -->
43
        <dependency>
44
            <groupId>com.google.code.gson</groupId>
45
            <artifactId>gson</artifactId>
46
            <version>2.8.5</version>
47
        </dependency>
48
49
        <!-- Lib for loading file -->
50
        <dependency>
51
            <groupId>commons-io</groupId>
52
            <artifactId>commons-io</artifactId>
53
            <version>2.6</version>
54
        </dependency>
55
56
        <!-- Libs for Logging -->
57
        <dependency>
58
            <groupId>org.apache.logging.log4j</groupId>
59
            <artifactId>log4j-api</artifactId>
60
            <version>2.11.1</version>
61
        </dependency>
62
        <dependency>
63
            <groupId>org.apache.logging.log4j</groupId>
64
            <artifactId>log4j-core</artifactId>
65
            <version>2.11.1</version>
66
        </dependency>
67
68
        <!-- Libs for Unit testing -->
69
        <dependency>
70
            <groupId>org.junit.jupiter</groupId>
71
            <artifactId>junit-jupiter-api</artifactId>
72
            <version>5.3.2</version>
73
            <scope>test</scope>
74
        </dependency>
75
    </dependencies>
76
77
78
</project>