Projekt

Obecné

Profil

Stáhnout (3.44 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"
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
    <parent>
6
        <artifactId>imiger</artifactId>
7
        <groupId>cz.zcu.kiv</groupId>
8
        <version>0.1.2-SNAPSHOT</version>
9
        <relativePath>../pom.xml</relativePath>
10
    </parent>
11
    <modelVersion>4.0.0</modelVersion>
12

    
13
    <artifactId>imiger-dot-converter</artifactId>
14
    <version>1.0-SNAPSHOT</version>
15
    <packaging>jar</packaging>
16

    
17
    <properties>
18
        <maven.compiler.source>1.8</maven.compiler.source>
19
        <maven.compiler.target>1.8</maven.compiler.target>
20
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
    </properties>
22

    
23
    <build>
24
        <plugins>
25
            <plugin>
26
                <groupId>org.apache.maven.plugins</groupId>
27
                <artifactId>maven-assembly-plugin</artifactId>
28
                <configuration>
29
                    <descriptorRefs>
30
                        <descriptorRef>jar-with-dependencies</descriptorRef>
31
                    </descriptorRefs>
32
                </configuration>
33
                <executions>
34
                    <execution>
35
                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
36
                        <phase>package</phase> <!-- bind to the packaging phase -->
37
                        <goals>
38
                            <goal>single</goal>
39
                        </goals>
40
                    </execution>
41
                </executions>
42
            </plugin>
43
        </plugins>
44
    </build>
45

    
46
    <dependencies>
47
        <dependency>
48
            <groupId>cz.zcu.kiv</groupId>
49
            <artifactId>imiger-module</artifactId>
50
            <version>0.1.2-SNAPSHOT</version>
51
        </dependency>
52

    
53
        <dependency>
54
            <groupId>com.paypal.digraph</groupId>
55
            <artifactId>digraph-parser</artifactId>
56
            <version>1.0</version>
57
        </dependency>
58

    
59
        <!-- Lib for JSON handling -->
60
        <dependency>
61
            <groupId>com.google.code.gson</groupId>
62
            <artifactId>gson</artifactId>
63
            <version>2.8.5</version>
64
        </dependency>
65

    
66
        <!-- Lib for loading file -->
67
        <dependency>
68
            <groupId>commons-io</groupId>
69
            <artifactId>commons-io</artifactId>
70
            <version>2.6</version>
71
        </dependency>
72
        <dependency>
73
            <groupId>org.apache.commons</groupId>
74
            <artifactId>commons-io</artifactId>
75
            <version>1.3.2</version>
76
        </dependency>
77

    
78
        <!-- Libs for Logging -->
79
        <dependency>
80
            <groupId>org.apache.logging.log4j</groupId>
81
            <artifactId>log4j-api</artifactId>
82
            <version>2.11.1</version>
83
        </dependency>
84
        <dependency>
85
            <groupId>org.apache.logging.log4j</groupId>
86
            <artifactId>log4j-core</artifactId>
87
            <version>2.11.1</version>
88
        </dependency>
89

    
90
        <!-- Libs for Unit testing -->
91
        <dependency>
92
            <groupId>junit</groupId>
93
            <artifactId>junit</artifactId>
94
            <version>4.12</version>
95
            <scope>test</scope>
96
        </dependency>
97

    
98
        <dependency>
99
            <groupId>org.mockito</groupId>
100
            <artifactId>mockito-all</artifactId>
101
            <version>1.10.19</version>
102
        </dependency>
103
    </dependencies>
104
</project>
    (1-1/1)