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

    
5
	<groupId>eu.dnetlib</groupId>
6
	<artifactId>dnet-openaire-exporter</artifactId>
7
	<version>1.0.2</version>
8
	<scm>
9
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-openaire-exporter/tags/dnet-openaire-exporter-1.0.2</developerConnection>
10
      <url>https://github.com/spring-projects/spring-boot/spring-boot-starter-parent/dnet-openaire-exporter/tags/dnet-openaire-exporter-1.0.2</url>
11
  </scm>
12
	<ciManagement>
13
		<system>jenkins</system>
14
		<url>https://jenkins-dnet.d4science.org/view/DNet45/job/DSL45_dnet-openaire-exporter/</url>
15
	</ciManagement>
16
	<distributionManagement>
17
		<repository>
18
			<id>dnet45-releases</id>
19
			<name>D-Net 45 Releases</name>
20
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-releases</url>
21
			<layout>default</layout>
22
		</repository>
23
	</distributionManagement>
24

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

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

    
61
	<!-- Add typical dependencies for a web application -->
62
	<dependencies>
63

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

    
95
		<dependency>
96
			<groupId>org.springframework.boot</groupId>
97
			<artifactId>spring-boot-starter-web</artifactId>
98
		</dependency>
99

    
100
		<dependency>
101
			<groupId>org.springframework.boot</groupId>
102
			<artifactId>spring-boot-starter-jdbc</artifactId>
103
		</dependency>
104
		<dependency>
105
			<groupId>org.springframework.boot</groupId>
106
			<artifactId>spring-boot-starter-data-jpa</artifactId>
107
		</dependency>
108
		<dependency>
109
			<groupId>org.postgresql</groupId>
110
			<artifactId>postgresql</artifactId>
111
			<version>42.0.0</version>
112
		</dependency>
113
		<dependency>
114
			<groupId>org.apache.commons</groupId>
115
			<artifactId>commons-dbcp2</artifactId>
116
			<version>2.1</version>
117
		</dependency>
118
		<!-- TODO: migrate to stringtemplate4 -->
119
		<!--<dependency>-->
120
		<!--<groupId>org.antlr</groupId>-->
121
		<!--<artifactId>stringtemplate</artifactId>-->
122
		<!--<version>4.0.2</version>-->
123
		<!--</dependency>-->
124
		<dependency>
125
			<groupId>org.antlr</groupId>
126
			<artifactId>stringtemplate</artifactId>
127
			<version>3.2.1</version>
128
		</dependency>
129
		<dependency>
130
			<groupId>org.apache.commons</groupId>
131
			<artifactId>commons-lang3</artifactId>
132
			<version>3.5</version>
133
		</dependency>
134
		<dependency>
135
			<groupId>commons-io</groupId>
136
			<artifactId>commons-io</artifactId>
137
			<version>2.5</version>
138
		</dependency>
139

    
140
		<dependency>
141
			<groupId>com.google.guava</groupId>
142
			<artifactId>guava</artifactId>
143
			<version>21.0</version>
144
		</dependency>
145
		<dependency>
146
			<groupId>net.sf.supercsv</groupId>
147
			<artifactId>super-csv</artifactId>
148
			<version>2.4.0</version>
149
		</dependency>
150
		<dependency>
151
			<groupId>com.google.code.gson</groupId>
152
			<artifactId>gson</artifactId>
153
			<version>2.8.0</version>
154
		</dependency>
155

    
156

    
157
		<dependency>
158
			<groupId>com.fasterxml.jackson.datatype</groupId>
159
			<artifactId>jackson-datatype-joda</artifactId>
160
			<version>2.6.6</version>
161
		</dependency>
162
		<dependency>
163
			<groupId>joda-time</groupId>
164
			<artifactId>joda-time</artifactId>
165
			<version>2.8.2</version>
166
		</dependency>
167

    
168
		<dependency>
169
			<groupId>org.mongodb</groupId>
170
			<artifactId>mongo-java-driver</artifactId>
171
			<version>${mongodb.driver.version}</version>
172
		</dependency>
173

    
174
		<dependency>
175
			<groupId>io.springfox</groupId>
176
			<artifactId>springfox-swagger2</artifactId>
177
			<version>${springfox-version}</version>
178
		</dependency>
179
		<dependency>
180
			<groupId>io.springfox</groupId>
181
			<artifactId>springfox-swagger-ui</artifactId>
182
			<version>${springfox-version}</version>
183
		</dependency>
184

    
185
		<dependency>
186
			<groupId>org.springframework.boot</groupId>
187
			<artifactId>spring-boot-starter-test</artifactId>
188
			<scope>test</scope>
189
		</dependency>
190

    
191
	</dependencies>
192

    
193
	<build>
194
		<plugins>
195
			<plugin>
196
				<groupId>org.springframework.boot</groupId>
197
				<artifactId>spring-boot-maven-plugin</artifactId>
198
				<configuration>
199
					<executable>true</executable>
200
				</configuration>
201
			</plugin>
202
		</plugins>
203
	</build>
204

    
205
	<properties>
206
		<java.version>1.8</java.version>
207
		<mongodb.driver.version>3.4.2</mongodb.driver.version>
208
		<springfox-version>2.7.0</springfox-version>
209
		<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
210
	</properties>
211
</project>
(3-3/4)