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
    <parent>
4
        <groupId>eu.dnetlib</groupId>
5
        <artifactId>dnet-hadoop-parent</artifactId>
6
        <version>1.0.0</version>
7
        <relativePath></relativePath>
8
    </parent>
9
    <modelVersion>4.0.0</modelVersion>
10
    <groupId>eu.dnetlib</groupId>
11
    <artifactId>dnet-openaire-lod-export</artifactId>
12
    <version>1.0.0-SNAPSHOT</version>
13

    
14
    <build>
15

    
16
        <plugins>
17
            <plugin>
18
                <groupId>org.apache.maven.plugins</groupId>
19
                <artifactId>maven-compiler-plugin</artifactId>
20
                <configuration>
21
                    <source>1.7</source>
22
                    <target>1.7</target>
23
                </configuration>
24
            </plugin>
25
        </plugins>
26

    
27
    </build>
28
    <dependencies>
29
        <dependency>
30
            <groupId>javax.xml</groupId>
31
            <artifactId>jaxp-api</artifactId>
32
            <version>1.4.2</version>
33
        </dependency>
34
        <dependency>
35
            <groupId>net.sf.opencsv</groupId>
36
            <artifactId>opencsv</artifactId>
37
            <version>2.3</version>
38
        </dependency>
39
        <dependency>
40
            <groupId>org.apache.poi</groupId>
41
            <artifactId>poi</artifactId>
42
            <version>3.8</version>
43
        </dependency>
44

    
45
        <dependency>
46
            <groupId>org.apache.logging.log4j</groupId>
47
            <artifactId>log4j-core</artifactId>
48
            <version>2.0-rc2</version>
49
        </dependency>
50
        <dependency>
51
            <groupId>log4j</groupId>
52
            <artifactId>log4j</artifactId>
53
            <version>1.2.17</version>
54
        </dependency>
55
        <dependency>
56
            <groupId>org.slf4j</groupId>
57
            <artifactId>slf4j-api</artifactId>
58
            <version>1.7.6</version>
59
        </dependency>
60
        <dependency>
61
            <groupId>org.slf4j</groupId>
62
            <artifactId>slf4j-log4j12</artifactId>
63
            <version>1.7.6</version>
64
        </dependency>
65
      <dependency>
66
			<groupId>com.google.guava</groupId>
67
			<artifactId>guava</artifactId>
68
			<version>15.0</version>
69
		</dependency>
70

    
71
        <dependency>
72
            <groupId>eu.dnetlib</groupId>
73
            <artifactId>dnet-mapreduce-jobs</artifactId>
74
            <version>0.0.8.5-SNAPSHOT</version>
75
        </dependency>
76

    
77
        <dependency>
78
            <groupId>org.apache.httpcomponents</groupId>
79
            <artifactId>httpclient</artifactId>
80
            <version>4.0-alpha4</version>
81
        </dependency>
82
        <dependency>
83
            <groupId>commons-httpclient</groupId>
84
            <artifactId>commons-httpclient</artifactId>
85
            <version>3.1</version>
86
        </dependency>
87
        <dependency>
88
            <groupId>junit</groupId>
89
            <artifactId>junit</artifactId>
90
            <version>4.8.2</version>
91
        </dependency>
92

    
93
        <dependency>
94
            <groupId>eu.dnetlib</groupId>
95
            <artifactId>cnr-rmi-api</artifactId>
96
            <version>LATEST</version>
97
        </dependency>
98
        <dependency>
99
            <groupId>org.apache.cxf</groupId>
100
            <artifactId>cxf-rt-frontend-jaxws</artifactId>
101
            <version>2.7.8</version>
102
        </dependency>
103
        <dependency>
104
            <groupId>eu.dnetlib</groupId>
105
            <artifactId>dnet-openaire-data-protos</artifactId>
106
<!--            <version>3.5.1-SNAPSHOT</version>-->
107
            <version>3.5.1-SNAPSHOT</version>
108
        </dependency>
109

    
110

    
111
        <dependency>
112
            <groupId>org.jsoup</groupId>
113
            <artifactId>jsoup</artifactId>
114
            <version>1.8.3</version>
115
        </dependency>
116

    
117

    
118
    </dependencies>
119
    <repositories>
120
        <repository>
121
            <id>cloudera</id>
122
            <name>Cloudera Repository</name>
123
            <url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
124
            <releases>
125
                <enabled>true</enabled>
126
            </releases>
127
            <snapshots>
128
                <enabled>false</enabled>
129
            </snapshots>
130
        </repository>
131
    </repositories>
132

    
133
</project>
134

    
    (1-1/1)