Project

General

Profile

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

    
18
	<build>
19
		<plugins>
20
			<plugin>
21
				<groupId>org.apache.maven.plugins</groupId>
22
				<artifactId>maven-failsafe-plugin</artifactId>
23
				<version>2.19.1</version>
24
				<executions>
25
					<execution>
26
						<id>integration-test</id>
27
						<goals>
28
							<goal>integration-test</goal>
29
						</goals>
30
					</execution>
31
					<execution>
32
						<id>verify</id>
33
						<goals>
34
							<goal>verify</goal>
35
						</goals>
36
					</execution>
37
				</executions>
38
			</plugin>
39
		</plugins>
40
	</build>
41

    
42
	<dependencies>
43
		<dependency>
44
			<groupId>com.google.guava</groupId>
45
			<artifactId>guava</artifactId>
46
			<version>${google.guava.version}</version>
47
		</dependency>		
48
		<dependency>
49
			<groupId>junit</groupId>
50
			<artifactId>junit</artifactId>
51
			<version>${junit.version}</version>
52
			<scope>test</scope>
53
		</dependency>
54
		<dependency>
55
			<groupId>com.ximpleware</groupId>
56
			<artifactId>vtd-xml</artifactId>
57
			<version>[2.12, 3.0.0)</version>
58
		</dependency>
59
		<dependency>
60
			<groupId>commons-codec</groupId>
61
			<artifactId>commons-codec</artifactId>
62
			<version>${commons.codec.version}</version>
63
		</dependency>
64
		<dependency>
65
			<groupId>dom4j</groupId>
66
			<artifactId>dom4j</artifactId>
67
			<version>${dom4j.version}</version>
68
			<exclusions>
69
				<exclusion>
70
					<artifactId>xml-apis</artifactId>
71
					<groupId>xml-apis</groupId>
72
				</exclusion>
73
			</exclusions>
74
		</dependency>
75
		<dependency>
76
			<groupId>net.sf.supercsv</groupId>
77
			<artifactId>super-csv</artifactId>
78
			<version>2.4.0</version>
79
		</dependency>
80
		<dependency>
81
			<groupId>eu.dnetlib</groupId>
82
			<artifactId>dnet-openaire-data-protos</artifactId>
83
			<version>[3.9.0]</version>
84
		</dependency>
85
		<dependency>
86
			<groupId>eu.dnetlib</groupId>
87
			<artifactId>dnet-pace-core</artifactId>
88
			<version>[2.0.0,3.0.0)</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>eu.dnetlib</groupId>
92
			<artifactId>cnr-misc-utils</artifactId>
93
			<version>[1.0.0,2.0.0)</version>
94
		</dependency>
95
		<dependency>
96
			<groupId>eu.dnetlib</groupId>
97
			<artifactId>dnet-hadoop-commons</artifactId>
98
			<version>[2.0.0,3.0.0)</version>
99
		</dependency>
100
		<dependency>
101
			<groupId>eu.dnetlib</groupId>
102
			<artifactId>dnet-index-solr-common</artifactId>
103
			<!--<version>[1.0.0,1.3.1]</version> -->
104
			<!-- uncomment to include solrj 7.2.0 -->
105
			<version>[1.0.0,2.0.0]</version>
106
			
107
		</dependency>	
108
		<dependency>
109
			<groupId>com.googlecode.protobuf-java-format</groupId>
110
			<artifactId>protobuf-java-format</artifactId>
111
			<version>1.2</version>
112
		</dependency>
113
		<dependency>
114
			<groupId>org.apache.commons</groupId>
115
			<artifactId>commons-lang3</artifactId>
116
			<version>3.5</version>
117
		</dependency>
118

    
119
		<!-- test deps -->
120
		<dependency>
121
			<groupId>eu.dnetlib</groupId>
122
			<artifactId>dnet-openaireplus-profiles</artifactId>
123
			<version>[1.0.0,2.0.0)</version>
124
			<scope>test</scope>
125
		</dependency>
126
		<dependency>
127
			<groupId>org.mongodb</groupId>
128
			<artifactId>mongo-java-driver</artifactId>
129
			<version>${mongodb.driver.version}</version>
130
			<scope>test</scope>
131
		</dependency>
132
		<dependency>
133
			<groupId>org.springframework</groupId>
134
			<artifactId>spring-context</artifactId>
135
			<version>${spring.version}</version>
136
			<scope>test</scope>
137
		</dependency>
138
		<dependency>
139
			<groupId>org.springframework</groupId>
140
			<artifactId>spring-core</artifactId>
141
			<version>${spring.version}</version>
142
			<scope>test</scope>
143
		</dependency>
144
		<dependency>
145
			<groupId>org.springframework</groupId>
146
			<artifactId>spring-test</artifactId>
147
			<version>${spring.version}</version>
148
			<scope>test</scope>
149
		</dependency>
150

    
151
	</dependencies>
152
</project>
(2-2/2)