Project

General

Profile

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
    <modelVersion>4.0.0</modelVersion>
4
    <groupId>eu.dnetlib</groupId>
5
    <artifactId>icm-iis-primer</artifactId>
6
    <version>0.0.1-SNAPSHOT</version>
7
    <packaging>jar</packaging>
8

    
9
    <name>icm-iis-classpath-primer</name>
10
    <url>http://maven.apache.org</url>
11

    
12
    <dependencies>
13
        <dependency>
14
            <groupId>junit</groupId>
15
            <artifactId>junit</artifactId>
16
            <version>4.10</version>
17
        </dependency>
18
        <dependency>
19
            <groupId>commons-io</groupId>
20
            <artifactId>commons-io</artifactId>
21
            <version>2.4</version>
22
        </dependency>
23
        <dependency>
24
            <groupId>log4j</groupId>
25
            <artifactId>log4j</artifactId>
26
            <version>1.2.17</version>
27
        </dependency>
28
        <dependency>
29
            <groupId>org.apache.commons</groupId>
30
            <artifactId>commons-compress</artifactId>
31
            <version>1.4.1</version>
32
        </dependency>
33
        <dependency>
34
            <groupId>commons-lang</groupId>
35
            <artifactId>commons-lang</artifactId>
36
            <version>2.6</version>
37
        </dependency>
38
    </dependencies>
39
    <properties>
40
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41
    </properties>
42

    
43
    <build>
44
        <plugins>
45
            <plugin>
46
                <groupId>org.apache.maven.plugins</groupId>
47
                <artifactId>maven-compiler-plugin</artifactId>
48
                <version>3.1</version>
49
                <configuration>
50
                    <source>1.5</source>
51
                    <target>1.5</target>
52
                </configuration>
53
            </plugin>
54
        </plugins>
55
    </build>
56
</project>
(3-3/3)