Projekt

Obecné

Profil

Stáhnout (2.78 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
    <groupId>com.example.plugin</groupId>
8
    <artifactId>imiger-plugin-template</artifactId>
9
    <version>1.0-SNAPSHOT</version>
10
    <packaging>jar</packaging>
11

    
12
    <properties>
13
        <maven.compiler.source>1.8</maven.compiler.source>
14
        <maven.compiler.target>1.8</maven.compiler.target>
15
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16
    </properties>
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
        <!-- Lib for JSON handling -->
46
        <dependency>
47
            <groupId>com.google.code.gson</groupId>
48
            <artifactId>gson</artifactId>
49
            <version>2.8.5</version>
50
        </dependency>
51

    
52
        <!-- Lib for loading file -->
53
        <dependency>
54
            <groupId>commons-io</groupId>
55
            <artifactId>commons-io</artifactId>
56
            <version>2.6</version>
57
        </dependency>
58

    
59
        <!-- Libs for Logging -->
60
        <dependency>
61
            <groupId>org.apache.logging.log4j</groupId>
62
            <artifactId>log4j-api</artifactId>
63
            <version>2.11.1</version>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.apache.logging.log4j</groupId>
67
            <artifactId>log4j-core</artifactId>
68
            <version>2.11.1</version>
69
        </dependency>
70

    
71
        <!-- Libs for Unit testing -->
72
        <dependency>
73
            <groupId>org.junit.jupiter</groupId>
74
            <artifactId>junit-jupiter-api</artifactId>
75
            <version>5.3.2</version>
76
            <scope>test</scope>
77
        </dependency>
78
    </dependencies>
79

    
80

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