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.9-SNAPSHOT</version>
7
	<scm>
8
	  <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-openaire-exporter/trunk</developerConnection>
9
    </scm>
10
	<ciManagement>
11
		<system>jenkins</system>
12
		<url>https://jenkins-dnet.d4science.org/view/DNet45/job/DSL45_dnet-openaire-exporter/</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

    
56

    
57
	</repositories>
58
	<profiles>
59
		<profile>
60
			<id>java8-doclint-disabled</id>
61
			<activation>
62
				<jdk>[1.8,)</jdk>
63
			</activation>
64
			<properties>
65
				<javadoc.opts>-Xdoclint:none</javadoc.opts>
66
			</properties>
67
		</profile>
68
	</profiles>
69

    
70
	<!-- Add typical dependencies for a web application -->
71
	<dependencies>
72

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

    
154
		<dependency>
155
			<groupId>org.apache.httpcomponents</groupId>
156
			<artifactId>httpclient</artifactId>
157
			<version>4.5.3</version>
158
		</dependency>
159
		<dependency>
160
			<groupId>org.apache.httpcomponents</groupId>
161
			<artifactId>httpcore</artifactId>
162
			<version>4.4.6</version>
163
		</dependency>
164
		<dependency>
165
			<groupId>org.apache.httpcomponents</groupId>
166
			<artifactId>httpmime</artifactId>
167
			<version>4.5.3</version>
168
		</dependency>
169

    
170
		<dependency>
171
			<groupId>commons-io</groupId>
172
			<artifactId>commons-io</artifactId>
173
			<version>2.5</version>
174
		</dependency>
175

    
176
		<dependency>
177
			<groupId>com.google.guava</groupId>
178
			<artifactId>guava</artifactId>
179
			<version>23.3-jre</version>
180
		</dependency>
181
		<dependency>
182
			<groupId>net.sf.supercsv</groupId>
183
			<artifactId>super-csv</artifactId>
184
			<version>2.4.0</version>
185
		</dependency>
186
		<dependency>
187
			<groupId>com.google.code.gson</groupId>
188
			<artifactId>gson</artifactId>
189
			<version>2.8.0</version>
190
		</dependency>
191
		
192
		<dependency>
193
			<groupId>com.fasterxml.jackson.datatype</groupId>
194
			<artifactId>jackson-datatype-joda</artifactId>
195
			<version>2.6.6</version>
196
		</dependency>
197
		<dependency>
198
			<groupId>joda-time</groupId>
199
			<artifactId>joda-time</artifactId>
200
			<version>2.8.2</version>
201
		</dependency>
202

    
203
		<dependency>
204
			<groupId>org.mongodb</groupId>
205
			<artifactId>mongo-java-driver</artifactId>
206
			<version>${mongodb.driver.version}</version>
207
		</dependency>
208
		
209
		<dependency>
210
			<groupId>eu.dnetlib</groupId>
211
			<artifactId>dnet-datasource-manager-common</artifactId>
212
			<version>[0.0.1,2.0.0)</version>
213
		</dependency>
214

    
215
		<dependency>
216
			<groupId>io.springfox</groupId>
217
			<artifactId>springfox-swagger2</artifactId>
218
			<version>${springfox-version}</version>
219
		</dependency>
220
		<dependency>
221
			<groupId>io.springfox</groupId>
222
			<artifactId>springfox-swagger-ui</artifactId>
223
			<version>${springfox-version}</version>
224
		</dependency>
225

    
226
		<!-- for /metrics and /health controllers -->
227
		<dependency>
228
			<groupId>io.prometheus</groupId>
229
			<artifactId>simpleclient_spring_boot</artifactId>
230
			<version>${prometheus.version}</version>
231
			<exclusions>
232
				<exclusion>
233
					<groupId>org.springframework</groupId>
234
					<artifactId>spring-web</artifactId>
235
				</exclusion>
236
			</exclusions>
237
		</dependency>
238
		<dependency>
239
			<groupId>io.prometheus</groupId>
240
			<artifactId>simpleclient_hotspot</artifactId>
241
			<version>${prometheus.version}</version>
242
		</dependency>
243
		<dependency>
244
			<groupId>io.prometheus</groupId>
245
			<artifactId>simpleclient_servlet</artifactId>
246
			<version>${prometheus.version}</version>
247
		</dependency>
248

    
249
		<dependency>
250
			<groupId>org.springframework.boot</groupId>
251
			<artifactId>spring-boot-starter-test</artifactId>
252
			<scope>test</scope>
253
		</dependency>
254

    
255
	</dependencies>
256

    
257
	<build>
258
		<plugins>
259
			<plugin>
260
				<groupId>org.springframework.boot</groupId>
261
				<artifactId>spring-boot-maven-plugin</artifactId>
262
				<configuration>
263
					<executable>true</executable>
264
				</configuration>
265
			</plugin>
266
		</plugins>
267
	</build>
268

    
269
	<properties>
270
		<java.version>1.8</java.version>
271
		<apache.solr.version>7.1.0</apache.solr.version>
272
		<mongodb.driver.version>3.4.2</mongodb.driver.version>
273
		<springfox-version>2.7.0</springfox-version>
274
		<prometheus.version>0.0.25</prometheus.version>
275
		<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
276
	</properties>
277
</project>
(3-3/3)