Project

General

Profile

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

    
6
    <parent>
7
        <groupId>eu.dnetlib</groupId>
8
        <artifactId>dnet-hadoop-parent</artifactId>
9
        <version>1.0.0</version>
10
        <relativePath></relativePath>
11
    </parent>
12

    
13
    <modelVersion>4.0.0</modelVersion>
14
    <groupId>eu.dnetlib</groupId>
15
    <artifactId>dnet-openaire-usage-stats</artifactId>
16
    <version>0.0.1-SNAPSHOT</version>
17

    
18
    <dependencies>
19

    
20
        <dependency>
21
            <groupId>postgresql</groupId>
22
            <artifactId>postgresql</artifactId>
23
            <version>9.1-901-1.jdbc4</version>
24
            <scope>runtime</scope>
25
        </dependency>
26

    
27
        <dependency>
28
            <groupId>junit</groupId>
29
            <artifactId>junit</artifactId>
30
            <version>3.8.1</version>
31
            <scope>test</scope>
32
        </dependency>
33

    
34
        <dependency>
35
            <groupId>com.googlecode.json-simple</groupId>
36
            <artifactId>json-simple</artifactId>
37
            <version>1.1.1</version>
38
        </dependency>
39
        <dependency>
40
            <groupId>org.apache.hadoop</groupId>
41
            <artifactId>hadoop-common</artifactId>
42
            <version>2.0.0-cdh4.3.1</version>
43
        </dependency>
44
        <dependency>
45
            <groupId>org.jsoup</groupId>
46
            <artifactId>jsoup</artifactId>
47
            <version>1.8.3</version>
48
            <scope>test</scope>
49
        </dependency>
50
        <dependency>
51
            <groupId>org.jsoup</groupId>
52
            <artifactId>jsoup</artifactId>
53
            <version>1.8.3</version>
54
            <scope>test</scope>
55
        </dependency>
56

    
57
    </dependencies>
58

    
59
    <properties>
60
        <java.version>1.7</java.version>
61
    </properties>
62

    
63

    
64
    <build>
65
        <plugins>
66
            <plugin>
67
                <groupId>org.apache.maven.plugins</groupId>
68
                <artifactId>maven-compiler-plugin</artifactId>
69
                <configuration>
70
                    <source>1.7</source>
71
                    <target>1.7</target>
72
                </configuration>
73
            </plugin>
74
        </plugins>
75
    </build>
76
</project>
    (1-1/1)