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.2.22-solr75</version>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-openaireplus-mapping-utils/tags/dnet-openaireplus-mapping-utils-6.2.22-solr75</developerConnection>
16
	</scm>
17

    
18
	<properties>
19
		<skipITs>true</skipITs>
20
	</properties>
21
	<build>
22
		<plugins>
23
			<plugin>
24
				<groupId>org.apache.maven.plugins</groupId>
25
				<artifactId>maven-failsafe-plugin</artifactId>
26
				<version>2.19.1</version>
27
				<executions>
28
					<execution>
29
						<id>integration-test</id>
30
						<goals>
31
							<goal>integration-test</goal>
32
						</goals>
33
					</execution>
34
					<execution>
35
						<id>verify</id>
36
						<goals>
37
							<goal>verify</goal>
38
						</goals>
39
					</execution>
40
				</executions>
41
				<configuration>
42
					<skipITs>${skipITs}</skipITs>
43
				</configuration>
44
			</plugin>
45
		</plugins>
46
	</build>
47

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

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

    
154
	</dependencies>
155
</project>
(2-2/2)