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
	</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
		<dependency>
102
			<groupId>org.apache.solr</groupId>
103
			<artifactId>solr-solrj</artifactId>
104
			<version>${apache.solr.version}</version>
105
		</dependency>
106

    
107
		<dependency>
108
			<groupId>org.springframework.boot</groupId>
109
			<artifactId>spring-boot-starter-web</artifactId>
110
		</dependency>
111

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

    
152
		<dependency>
153
			<groupId>com.google.guava</groupId>
154
			<artifactId>guava</artifactId>
155
			<version>21.0</version>
156
		</dependency>
157
		<dependency>
158
			<groupId>net.sf.supercsv</groupId>
159
			<artifactId>super-csv</artifactId>
160
			<version>2.4.0</version>
161
		</dependency>
162
		<dependency>
163
			<groupId>com.google.code.gson</groupId>
164
			<artifactId>gson</artifactId>
165
			<version>2.8.0</version>
166
		</dependency>
167

    
168

    
169
		<dependency>
170
			<groupId>com.fasterxml.jackson.datatype</groupId>
171
			<artifactId>jackson-datatype-joda</artifactId>
172
			<version>2.6.6</version>
173
		</dependency>
174
		<dependency>
175
			<groupId>joda-time</groupId>
176
			<artifactId>joda-time</artifactId>
177
			<version>2.8.2</version>
178
		</dependency>
179

    
180
		<dependency>
181
			<groupId>org.mongodb</groupId>
182
			<artifactId>mongo-java-driver</artifactId>
183
			<version>${mongodb.driver.version}</version>
184
		</dependency>
185

    
186
		<dependency>
187
			<groupId>io.springfox</groupId>
188
			<artifactId>springfox-swagger2</artifactId>
189
			<version>${springfox-version}</version>
190
		</dependency>
191
		<dependency>
192
			<groupId>io.springfox</groupId>
193
			<artifactId>springfox-swagger-ui</artifactId>
194
			<version>${springfox-version}</version>
195
		</dependency>
196

    
197
		<!-- for /metrics and /health controllers -->
198
		<dependency>
199
			<groupId>io.prometheus</groupId>
200
			<artifactId>simpleclient_spring_boot</artifactId>
201
			<version>${prometheus.version}</version>
202
			<exclusions>
203
				<exclusion>
204
					<groupId>org.springframework</groupId>
205
					<artifactId>spring-web</artifactId>
206
				</exclusion>
207
			</exclusions>
208
		</dependency>
209
		<dependency>
210
			<groupId>io.prometheus</groupId>
211
			<artifactId>simpleclient_hotspot</artifactId>
212
			<version>${prometheus.version}</version>
213
		</dependency>
214
		<dependency>
215
			<groupId>io.prometheus</groupId>
216
			<artifactId>simpleclient_servlet</artifactId>
217
			<version>${prometheus.version}</version>
218
		</dependency>
219

    
220
		<dependency>
221
			<groupId>org.springframework.boot</groupId>
222
			<artifactId>spring-boot-starter-test</artifactId>
223
			<scope>test</scope>
224
		</dependency>
225

    
226
	</dependencies>
227

    
228
	<build>
229
		<plugins>
230
			<plugin>
231
				<groupId>org.springframework.boot</groupId>
232
				<artifactId>spring-boot-maven-plugin</artifactId>
233
				<configuration>
234
					<executable>true</executable>
235
				</configuration>
236
			</plugin>
237
		</plugins>
238
	</build>
239

    
240
	<properties>
241
		<java.version>1.8</java.version>
242
		<apache.solr.version>6.6.0</apache.solr.version>
243
		<mongodb.driver.version>3.4.2</mongodb.driver.version>
244
		<springfox-version>2.7.0</springfox-version>
245
		<prometheus.version>0.0.25</prometheus.version>
246
		<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
247
	</properties>
248
</project>
(3-3/4)