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/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<groupId>eu.dnetlib</groupId>
5
	<artifactId>dnet-openaire-exporter</artifactId>
6
	<version>1.0.11-beta-SNAPSHOT</version>
7
	<scm>
8
	  <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-openaire-exporter/branches/beta</developerConnection>
9
  </scm>
10
	<ciManagement>
11
		<system>jenkins</system>
12
		<url>https://jenkins-dnet.d4science.org/view/DNet45/job/DSL45_dnet-openaire-exporter-BETA/</url>
13
	</ciManagement>
14
	<distributionManagement>
15
		<repository>
16
			<id>dnet45-releases</id>
17
			<name>D-Net 45 Releases</name>
18
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-releases</url>
19
			<layout>default</layout>
20
		</repository>
21
	</distributionManagement>
22

    
23
	<!-- Inherit defaults from Spring Boot -->
24
	<parent>
25
		<groupId>org.springframework.boot</groupId>
26
		<artifactId>spring-boot-starter-parent</artifactId>
27
		<version>1.5.2.RELEASE</version>
28
	</parent>
29

    
30
	<repositories>
31
		<repository>
32
			<id>dnet-deps</id>
33
			<name>dnet-dependencies</name>
34
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
35
			<layout>default</layout>
36
		</repository>
37
		<repository>
38
			<id>dnet45-releases</id>
39
			<name>D-Net 45 Releases</name>
40
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-releases</url>
41
			<layout>default</layout>
42
			<snapshots>
43
				<enabled>true</enabled>
44
			</snapshots>
45
		</repository>
46
		<repository>
47
			<id>dnet45-snapshots</id>
48
			<name>D-Net 45 Snapshots</name>
49
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-snapshots</url>
50
			<layout>default</layout>
51
			<snapshots>
52
				<enabled>true</enabled>
53
			</snapshots>
54
		</repository>
55
	</repositories>
56
	<profiles>
57
		<profile>
58
			<id>java8-doclint-disabled</id>
59
			<activation>
60
				<jdk>[1.8,)</jdk>
61
			</activation>
62
			<properties>
63
				<javadoc.opts>-Xdoclint:none</javadoc.opts>
64
			</properties>
65
		</profile>
66
	</profiles>
67

    
68
	<!-- Add typical dependencies for a web application -->
69
	<dependencies>
70

    
71
		<dependency>
72
			<groupId>eu.dnetlib</groupId>
73
			<artifactId>cnr-rmi-api</artifactId>
74
			<version>[2.0.0,3.0.0)</version>
75
		</dependency>
76
		<dependency>
77
			<groupId>org.apache.cxf</groupId>
78
			<artifactId>cxf-rt-transports-http</artifactId>
79
			<version>3.1.5</version>
80
		</dependency>
81
		<dependency>
82
			<groupId>eu.dnetlib</groupId>
83
			<artifactId>cnr-service-common</artifactId>
84
			<version>[2.0.0,3.0.0)</version>
85
		</dependency>
86
		<dependency>
87
			<groupId>eu.dnetlib</groupId>
88
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
89
			<version>[6.0.0,7.0.0)</version>
90
			<exclusions>
91
				<exclusion>
92
					<groupId>com.sun.jersey</groupId>
93
					<artifactId>jersey-client</artifactId>
94
				</exclusion>
95
				<exclusion>
96
					<groupId>eu.dnetlib</groupId>
97
					<artifactId>dnet-hadoop-commons</artifactId>
98
				</exclusion>
99
			</exclusions>
100
		</dependency>
101

    
102
		<dependency>
103
			<groupId>eu.dnetlib</groupId>
104
			<artifactId>dnet-objectstore-rmi</artifactId>
105
			<version>[2.0.0,3.0.0)</version>
106
		</dependency>
107

    
108
		<dependency>
109
			<groupId>org.apache.solr</groupId>
110
			<artifactId>solr-solrj</artifactId>
111
			<version>${apache.solr.version}</version>
112
		</dependency>
113

    
114
		<dependency>
115
			<groupId>org.springframework.boot</groupId>
116
			<artifactId>spring-boot-starter-web</artifactId>
117
		</dependency>
118

    
119
		<dependency>
120
			<groupId>org.springframework.boot</groupId>
121
			<artifactId>spring-boot-starter-jdbc</artifactId>
122
		</dependency>
123
		<dependency>
124
			<groupId>org.springframework.boot</groupId>
125
			<artifactId>spring-boot-starter-data-jpa</artifactId>
126
		</dependency>
127
		<dependency>
128
			<groupId>org.postgresql</groupId>
129
			<artifactId>postgresql</artifactId>
130
			<version>42.0.0</version>
131
		</dependency>
132
		<dependency>
133
			<groupId>org.apache.commons</groupId>
134
			<artifactId>commons-dbcp2</artifactId>
135
			<version>2.1</version>
136
		</dependency>
137
		<!-- TODO: migrate to stringtemplate4 -->
138
		<!--<dependency>-->
139
		<!--<groupId>org.antlr</groupId>-->
140
		<!--<artifactId>stringtemplate</artifactId>-->
141
		<!--<version>4.0.2</version>-->
142
		<!--</dependency>-->
143
		<dependency>
144
			<groupId>org.antlr</groupId>
145
			<artifactId>stringtemplate</artifactId>
146
			<version>3.2.1</version>
147
		</dependency>
148
		<dependency>
149
			<groupId>org.apache.commons</groupId>
150
			<artifactId>commons-lang3</artifactId>
151
			<version>3.5</version>
152
		</dependency>
153
		<dependency>
154
			<groupId>commons-io</groupId>
155
			<artifactId>commons-io</artifactId>
156
			<version>2.5</version>
157
		</dependency>
158

    
159
		<dependency>
160
			<groupId>com.google.guava</groupId>
161
			<artifactId>guava</artifactId>
162
			<version>${google.guava.version}</version>
163
		</dependency>
164
		<dependency>
165
			<groupId>net.sf.supercsv</groupId>
166
			<artifactId>super-csv</artifactId>
167
			<version>2.4.0</version>
168
		</dependency>
169
		<dependency>
170
			<groupId>com.google.code.gson</groupId>
171
			<artifactId>gson</artifactId>
172
			<version>${google.gson.version}</version>
173
		</dependency>
174

    
175

    
176
		<dependency>
177
			<groupId>com.fasterxml.jackson.datatype</groupId>
178
			<artifactId>jackson-datatype-joda</artifactId>
179
			<version>2.6.6</version>
180
		</dependency>
181
		<dependency>
182
			<groupId>joda-time</groupId>
183
			<artifactId>joda-time</artifactId>
184
			<version>2.8.2</version>
185
		</dependency>
186

    
187
		<dependency>
188
			<groupId>org.mongodb</groupId>
189
			<artifactId>mongo-java-driver</artifactId>
190
			<version>${mongodb.driver.version}</version>
191
		</dependency>
192

    
193
		<dependency>
194
			<groupId>io.springfox</groupId>
195
			<artifactId>springfox-swagger2</artifactId>
196
			<version>${springfox-version}</version>
197
		</dependency>
198
		<dependency>
199
			<groupId>io.springfox</groupId>
200
			<artifactId>springfox-swagger-ui</artifactId>
201
			<version>${springfox-version}</version>
202
		</dependency>
203

    
204
		<!-- for /metrics and /health controllers -->
205
		<dependency>
206
			<groupId>io.prometheus</groupId>
207
			<artifactId>simpleclient_spring_boot</artifactId>
208
			<version>${prometheus.version}</version>
209
			<exclusions>
210
				<exclusion>
211
					<groupId>org.springframework</groupId>
212
					<artifactId>spring-web</artifactId>
213
				</exclusion>
214
			</exclusions>
215
		</dependency>
216
		<dependency>
217
			<groupId>io.prometheus</groupId>
218
			<artifactId>simpleclient_hotspot</artifactId>
219
			<version>${prometheus.version}</version>
220
		</dependency>
221
		<dependency>
222
			<groupId>io.prometheus</groupId>
223
			<artifactId>simpleclient_servlet</artifactId>
224
			<version>${prometheus.version}</version>
225
		</dependency>
226

    
227
		<dependency>
228
			<groupId>org.springframework.boot</groupId>
229
			<artifactId>spring-boot-starter-test</artifactId>
230
			<scope>test</scope>
231
		</dependency>
232

    
233
	</dependencies>
234

    
235
	<build>
236
		<plugins>
237
			<plugin>
238
				<groupId>org.springframework.boot</groupId>
239
				<artifactId>spring-boot-maven-plugin</artifactId>
240
				<configuration>
241
					<executable>true</executable>
242
				</configuration>
243
			</plugin>
244
		</plugins>
245
	</build>
246

    
247
	<properties>
248
		<java.version>1.8</java.version>
249
		<apache.solr.version>4.10.4</apache.solr.version>
250
		<google.guava.version>23.3-jre</google.guava.version>
251
		<google.gson.version>2.8.0</google.gson.version>
252
		<mongodb.driver.version>3.4.2</mongodb.driver.version>
253
		<springfox-version>2.7.0</springfox-version>
254
		<prometheus.version>0.0.25</prometheus.version>
255
		<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
256
	</properties>
257
</project>
(3-3/4)