1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
3
|
<parent>
|
4
|
<groupId>eu.dnetlib</groupId>
|
5
|
<artifactId>dnet45-parent</artifactId>
|
6
|
<version>1.0.0</version>
|
7
|
<relativePath />
|
8
|
</parent>
|
9
|
<modelVersion>4.0.0</modelVersion>
|
10
|
<groupId>eu.dnetlib</groupId>
|
11
|
<artifactId>dnet-openaireplus-mapping-utils</artifactId>
|
12
|
<packaging>jar</packaging>
|
13
|
<version>6.1.6-SNAPSHOT</version>
|
14
|
<scm>
|
15
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-openaireplus-mapping-utils/trunk</developerConnection>
|
16
|
</scm>
|
17
|
<dependencies>
|
18
|
<dependency>
|
19
|
<groupId>com.google.guava</groupId>
|
20
|
<artifactId>guava</artifactId>
|
21
|
<version>${google.guava.version}</version>
|
22
|
</dependency>
|
23
|
<dependency>
|
24
|
<groupId>junit</groupId>
|
25
|
<artifactId>junit</artifactId>
|
26
|
<version>${junit.version}</version>
|
27
|
<scope>test</scope>
|
28
|
</dependency>
|
29
|
<dependency>
|
30
|
<groupId>commons-codec</groupId>
|
31
|
<artifactId>commons-codec</artifactId>
|
32
|
<version>${commons.codec.version}</version>
|
33
|
</dependency>
|
34
|
<dependency>
|
35
|
<groupId>dom4j</groupId>
|
36
|
<artifactId>dom4j</artifactId>
|
37
|
<version>${dom4j.version}</version>
|
38
|
<exclusions>
|
39
|
<exclusion>
|
40
|
<artifactId>xml-apis</artifactId>
|
41
|
<groupId>xml-apis</groupId>
|
42
|
</exclusion>
|
43
|
</exclusions>
|
44
|
</dependency>
|
45
|
<dependency>
|
46
|
<groupId>net.sf.supercsv</groupId>
|
47
|
<artifactId>super-csv</artifactId>
|
48
|
<version>2.4.0</version>
|
49
|
</dependency>
|
50
|
<dependency>
|
51
|
<groupId>eu.dnetlib</groupId>
|
52
|
<artifactId>dnet-openaire-data-protos</artifactId>
|
53
|
<version>[3.8.10]</version>
|
54
|
</dependency>
|
55
|
<dependency>
|
56
|
<groupId>eu.dnetlib</groupId>
|
57
|
<artifactId>dnet-pace-core</artifactId>
|
58
|
<version>[2.0.0,3.0.0)</version>
|
59
|
</dependency>
|
60
|
<dependency>
|
61
|
<groupId>eu.dnetlib</groupId>
|
62
|
<artifactId>cnr-misc-utils</artifactId>
|
63
|
<version>[1.0.0,2.0.0)</version>
|
64
|
</dependency>
|
65
|
<dependency>
|
66
|
<groupId>eu.dnetlib</groupId>
|
67
|
<artifactId>dnet-hadoop-commons</artifactId>
|
68
|
<version>[2.0.0,3.0.0)</version>
|
69
|
</dependency>
|
70
|
<dependency>
|
71
|
<groupId>eu.dnetlib</groupId>
|
72
|
<artifactId>dnet-index-solr-common</artifactId>
|
73
|
<!--<version>[1.0.0,1.3.1]</version> -->
|
74
|
<!-- uncomment to include solrj 7.2.0 -->
|
75
|
<version>[1.0.0,2.0.0]</version>
|
76
|
|
77
|
</dependency>
|
78
|
<dependency>
|
79
|
<groupId>com.googlecode.protobuf-java-format</groupId>
|
80
|
<artifactId>protobuf-java-format</artifactId>
|
81
|
<version>1.2</version>
|
82
|
</dependency>
|
83
|
<dependency>
|
84
|
<groupId>eu.dnetlib</groupId>
|
85
|
<artifactId>dnet-openaireplus-profiles</artifactId>
|
86
|
<version>[1.0.0,2.0.0)</version>
|
87
|
<scope>test</scope>
|
88
|
</dependency>
|
89
|
<dependency>
|
90
|
<groupId>org.apache.commons</groupId>
|
91
|
<artifactId>commons-lang3</artifactId>
|
92
|
<version>3.5</version>
|
93
|
</dependency>
|
94
|
|
95
|
</dependencies>
|
96
|
</project>
|