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>org.springframework.boot</groupId>
5
		<artifactId>spring-boot-starter-parent</artifactId>
6
		<version>1.5.6.RELEASE</version>
7
		<relativePath/>
8
	</parent>
9

    
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-parthenos-publisher</artifactId>
13
	<packaging>jar</packaging>
14
	<version>4.0.0-SNAPSHOT</version>
15
	<scm>
16
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-parthenos-publisher/trunk</developerConnection>
17
		<url>https://github.com/spring-projects/spring-boot/spring-boot-starter-parent/dnet-parthenos-publisher</url>
18
	</scm>
19
	<ciManagement>
20
		<system>jenkins</system>
21
		<url>https://jenkins-dnet.d4science.org/view/DNet50/job/DSL50_dnet-parthenos-publisher/</url>
22
	</ciManagement>
23
	<distributionManagement>
24
		<repository>
25
			<id>dnet5-releases</id>
26
			<name>D-Net 5 Releases</name>
27
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-releases</url>
28
			<layout>default</layout>
29
		</repository>
30
	</distributionManagement>
31

    
32
	<!-- Inherit defaults from Spring Boot -->
33

    
34
	<repositories>
35
		<repository>
36
			<id>dnet-deps</id>
37
			<name>dnet-dependencies</name>
38
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
39
			<layout>default</layout>
40
		</repository>
41
		<repository>
42
			<id>dnet5-releases</id>
43
			<name>D-Net 5 Releases</name>
44
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-releases</url>
45
			<layout>default</layout>
46
			<snapshots>
47
				<enabled>false</enabled>
48
			</snapshots>
49
		</repository>
50
		<repository>
51
			<id>dnet5-snapshots</id>
52
			<name>D-Net 5 Snapshots</name>
53
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-snapshots</url>
54
			<layout>default</layout>
55
			<snapshots>
56
				<enabled>true</enabled>
57
			</snapshots>
58
		</repository>
59
		<!--
60
		<repository>
61
			<id>gcube-snapshots</id>
62
			<name>gCube Snapshots</name>
63
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/gcube-snapshots</url>
64
			<releases>
65
				<enabled>false</enabled>
66
			</releases>
67
			<snapshots>
68
				<enabled>true</enabled>
69
			</snapshots>
70
		</repository>
71
		-->
72
		<repository>
73
			<id>gcube-releases</id>
74
			<name>gCube Releases</name>
75
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/gcube-releases</url>
76
			<snapshots>
77
				<enabled>false</enabled>
78
			</snapshots>
79
			<releases>
80
				<enabled>true</enabled>
81
			</releases>
82
		</repository>
83
		<repository>
84
			<id>gcube-externals</id>
85
			<name>gCube Externals</name>
86
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/gcube-externals</url>
87
			<snapshots>
88
				<enabled>false</enabled>
89
			</snapshots>
90
			<releases>
91
				<enabled>true</enabled>
92
			</releases>
93
		</repository>
94
	</repositories>
95

    
96
	<dependencies>
97
<!--		<dependency>-->
98
<!--			<groupId>org.gcube.data-publishing</groupId>-->
99
<!--			<artifactId>gcat-client</artifactId>-->
100
<!--			<version>[1.1.0, 2.0.0)</version>-->
101
<!--			<type>pom</type>-->
102
<!--		</dependency>-->
103
		<dependency>
104
			<groupId>net.sf.saxon</groupId>
105
			<artifactId>Saxon-HE</artifactId>
106
			<version>9.5.1-5</version>
107
		</dependency>
108
		<dependency>
109
			<groupId>virtuoso</groupId>
110
			<artifactId>jena-driver</artifactId>
111
			<version>3.0</version>
112
		</dependency>
113
		<dependency>
114
			<groupId>openlink</groupId>
115
			<artifactId>virtuoso-jdbc</artifactId>
116
			<version>4.0</version>
117
		</dependency>
118
		<dependency>
119
			<groupId>org.apache.jena</groupId>
120
			<artifactId>apache-jena</artifactId>
121
			<version>[3.3.0,4.0.0)</version>
122
			<type>pom</type>
123
			<exclusions>
124
				<exclusion>
125
					<groupId>org.slf4j</groupId>
126
					<artifactId>slf4j-log4j12</artifactId>
127
				</exclusion>
128
			</exclusions>
129
		</dependency>
130
		<dependency>
131
			<groupId>org.springframework.boot</groupId>
132
			<artifactId>spring-boot-starter-test</artifactId>
133
			<scope>test</scope>
134
		</dependency>
135
		<dependency>
136
			<groupId>org.springframework.boot</groupId>
137
			<artifactId>spring-boot-autoconfigure</artifactId>
138
		</dependency>
139
		<dependency>
140
			<groupId>org.springframework.boot</groupId>
141
			<artifactId>spring-boot</artifactId>
142
		</dependency>
143
		<dependency>
144
			<groupId>org.springframework.boot</groupId>
145
			<artifactId>spring-boot-starter-web</artifactId>
146
		</dependency>
147
		<dependency>
148
			<groupId>org.apache.solr</groupId>
149
			<artifactId>solr-solrj</artifactId>
150
			<version>[5.0.0,6.0.0)</version>
151
		</dependency>
152
		<!--
153
		<dependency>
154
			<groupId>org.gcube.information-system</groupId>
155
			<artifactId>parthenos-entities</artifactId>
156
			<version>1.0.0-SNAPSHOT</version>
157
		</dependency>
158
		<dependency>
159
			<groupId>org.gcube.information-system</groupId>
160
			<artifactId>resource-registry-publisher</artifactId>
161
			<version>[2.0.0-SNAPSHOT, 2.1.0-SNAPSHOT)</version>
162
		</dependency>
163
		<dependency>
164
			<groupId>org.gcube.information-system</groupId>
165
			<artifactId>resource-registry-client</artifactId>
166
			<version>[2.0.0-SNAPSHOT, 2.1.0-SNAPSHOT)</version>
167
		</dependency>
168
		<dependency>
169
			<groupId>org.gcube.common</groupId>
170
			<artifactId>authorization-client</artifactId>
171
			<version>LATEST</version>
172
		</dependency>
173
		<dependency>
174
			<groupId>org.gcube.information-system</groupId>
175
			<artifactId>resource-registry-api</artifactId>
176
			<version>[2.0.0-SNAPSHOT, 2.1.0-SNAPSHOT)</version>
177
		</dependency>
178
-->
179

    
180
		<dependency>
181
			<groupId>com.google.guava</groupId>
182
			<artifactId>guava</artifactId>
183
			<version>23.3-jre</version>
184
		</dependency>
185
		<dependency>
186
			<groupId>org.freemarker</groupId>
187
			<artifactId>freemarker</artifactId>
188
			<version>2.3.27-incubating</version>
189
		</dependency>
190
	</dependencies>
191

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

    
204
	<properties>
205
		<java.version>1.8</java.version>
206
		<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
207
	</properties>
208

    
209
	<profiles>
210
		<profile>
211
			<id>java8-doclint-disabled</id>
212
			<activation>
213
				<jdk>[1.8,)</jdk>
214
			</activation>
215
			<properties>
216
				<javadoc.opts>-Xdoclint:none</javadoc.opts>
217
			</properties>
218
		</profile>
219
	</profiles>
220
</project>
(3-3/3)