Projekt

Obecné

Profil

Stáhnout (3.15 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
    <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
                <artifactId>maven-assembly-plugin</artifactId>
30
                <configuration>
31
                    <archive>
32
                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
33
                    </archive>
34
                    <descriptorRefs>
35
                        <descriptorRef>jar-with-dependencies</descriptorRef>
36
                    </descriptorRefs>
37
                </configuration>
38
                <executions>
39
                    <execution>
40
                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
41
                        <phase>package</phase> <!-- bind to the packaging phase -->
42
                        <goals>
43
                            <goal>single</goal>
44
                        </goals>
45
                    </execution>
46
                </executions>
47
            </plugin>
48
        </plugins>
49
    </build>
50

    
51
    <dependencies>
52
        <dependency>
53
            <groupId>cz.zcu.kiv</groupId>
54
            <artifactId>imiger-vo</artifactId>
55
            <version>0.1.2-SNAPSHOT</version>
56
        </dependency>
57

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

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

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

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

    
93

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