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
|
<descriptorRefs>
|
25
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
26
|
</descriptorRefs>
|
27
|
</configuration>
|
28
|
<executions>
|
29
|
<execution>
|
30
|
<id>make-assembly</id> <!-- this is used for inheritance merges -->
|
31
|
<phase>package</phase> <!-- bind to the packaging phase -->
|
32
|
<goals>
|
33
|
<goal>single</goal>
|
34
|
</goals>
|
35
|
</execution>
|
36
|
</executions>
|
37
|
</plugin>
|
38
|
</plugins>
|
39
|
</build>
|
40
|
|
41
|
<dependencies>
|
42
|
<dependency>
|
43
|
<groupId>cz.zcu.kiv</groupId>
|
44
|
<artifactId>imiger-module</artifactId>
|
45
|
<version>0.1.2-SNAPSHOT</version>
|
46
|
</dependency>
|
47
|
|
48
|
<!-- Libs for JSON handling -->
|
49
|
<dependency>
|
50
|
<groupId>com.google.code.gson</groupId>
|
51
|
<artifactId>gson</artifactId>
|
52
|
<version>2.8.5</version>
|
53
|
</dependency>
|
54
|
<dependency>
|
55
|
<groupId>net.sf.json-lib</groupId>
|
56
|
<artifactId>json-lib</artifactId>
|
57
|
<version>2.4</version>
|
58
|
<classifier>jdk15</classifier>
|
59
|
</dependency>
|
60
|
|
61
|
<!-- Lib for loading file -->
|
62
|
<dependency>
|
63
|
<groupId>commons-io</groupId>
|
64
|
<artifactId>commons-io</artifactId>
|
65
|
<version>2.6</version>
|
66
|
</dependency>
|
67
|
|
68
|
<!-- Libs for Logging -->
|
69
|
<dependency>
|
70
|
<groupId>org.apache.logging.log4j</groupId>
|
71
|
<artifactId>log4j-api</artifactId>
|
72
|
<version>2.11.1</version>
|
73
|
</dependency>
|
74
|
<dependency>
|
75
|
<groupId>org.apache.logging.log4j</groupId>
|
76
|
<artifactId>log4j-core</artifactId>
|
77
|
<version>2.11.1</version>
|
78
|
</dependency>
|
79
|
|
80
|
<!-- Libs for Unit testing -->
|
81
|
<dependency>
|
82
|
<groupId>org.junit.jupiter</groupId>
|
83
|
<artifactId>junit-jupiter-api</artifactId>
|
84
|
<version>5.3.2</version>
|
85
|
<scope>test</scope>
|
86
|
</dependency>
|
87
|
</dependencies>
|
88
|
|
89
|
|
90
|
</project>
|