Projekt

Obecné

Profil

Stáhnout (3.1 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
    <modelVersion>4.0.0</modelVersion>
6

    
7
    <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
    <artifactId>imiger-spade-converter</artifactId>
15
    <version>1.0-SNAPSHOT</version>
16
    <packaging>jar</packaging>
17

    
18
    <build>
19
        <plugins>
20
            <plugin>
21
                <groupId>org.apache.maven.plugins</groupId>
22
                <artifactId>maven-assembly-plugin</artifactId>
23
                <configuration>
24
                    <archive>
25
                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
26
                    </archive>
27
                    <descriptorRefs>
28
                        <descriptorRef>jar-with-dependencies</descriptorRef>
29
                    </descriptorRefs>
30
                </configuration>
31
                <executions>
32
                    <execution>
33
                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
34
                        <phase>package</phase> <!-- bind to the packaging phase -->
35
                        <goals>
36
                            <goal>single</goal>
37
                        </goals>
38
                    </execution>
39
                </executions>
40
            </plugin>
41
        </plugins>
42
    </build>
43

    
44
    <dependencies>
45
        <dependency>
46
            <groupId>cz.zcu.kiv</groupId>
47
            <artifactId>imiger-vo</artifactId>
48
            <version>0.1.2-SNAPSHOT</version>
49
        </dependency>
50

    
51
        <!-- Libs for JSON handling -->
52
        <dependency>
53
            <groupId>com.google.code.gson</groupId>
54
            <artifactId>gson</artifactId>
55
            <version>2.8.5</version>
56
        </dependency>
57
        <dependency>
58
            <groupId>net.sf.json-lib</groupId>
59
            <artifactId>json-lib</artifactId>
60
            <version>2.4</version>
61
            <classifier>jdk15</classifier>
62
        </dependency>
63

    
64
        <!-- Lib for loading file -->
65
        <dependency>
66
            <groupId>commons-io</groupId>
67
            <artifactId>commons-io</artifactId>
68
            <version>2.6</version>
69
        </dependency>
70

    
71
        <!-- Libs for Logging -->
72
        <dependency>
73
            <groupId>org.apache.logging.log4j</groupId>
74
            <artifactId>log4j-api</artifactId>
75
            <version>2.11.1</version>
76
        </dependency>
77
        <dependency>
78
            <groupId>org.apache.logging.log4j</groupId>
79
            <artifactId>log4j-core</artifactId>
80
            <version>2.11.1</version>
81
        </dependency>
82

    
83
        <!-- Libs for Unit testing -->
84
        <dependency>
85
            <groupId>org.junit.jupiter</groupId>
86
            <artifactId>junit-jupiter-api</artifactId>
87
            <version>5.3.2</version>
88
            <scope>test</scope>
89
        </dependency>
90
    </dependencies>
91

    
92

    
93
</project>
    (1-1/1)