Projekt

Obecné

Profil

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