1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
3
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
4
|
<parent>
|
5
|
<groupId>eu.dnetlib</groupId>
|
6
|
<artifactId>dnet45-container-parent</artifactId>
|
7
|
<version>1.0.0-SNAPSHOT</version>
|
8
|
<relativePath></relativePath>
|
9
|
</parent>
|
10
|
<modelVersion>4.0.0</modelVersion>
|
11
|
<groupId>eu.dnetlib</groupId>
|
12
|
<artifactId>dnet-container-provision</artifactId>
|
13
|
<packaging>war</packaging>
|
14
|
<version>1.0.0-SNAPSHOT</version>
|
15
|
<dependencies>
|
16
|
|
17
|
<!-- Common components in every container -->
|
18
|
<dependency>
|
19
|
<groupId>eu.dnetlib</groupId>
|
20
|
<artifactId>cnr-log4j-inspector</artifactId>
|
21
|
<version>[1.0.0,2.0.0)</version>
|
22
|
</dependency>
|
23
|
|
24
|
<!-- Common services in every container -->
|
25
|
<dependency>
|
26
|
<groupId>eu.dnetlib</groupId>
|
27
|
<artifactId>cnr-enabling-hnm-service</artifactId>
|
28
|
<version>[2.0.0,3.0.0)</version>
|
29
|
</dependency>
|
30
|
<dependency>
|
31
|
<groupId>eu.dnetlib</groupId>
|
32
|
<artifactId>cnr-enabling-hcm-service</artifactId>
|
33
|
<version>[2.0.0,3.0.0)</version>
|
34
|
</dependency>
|
35
|
|
36
|
<dependency>
|
37
|
<groupId>eu.dnetlib</groupId>
|
38
|
<artifactId>cnr-resultset-service</artifactId>
|
39
|
<version>[2.0.0,3.0.0)</version>
|
40
|
</dependency>
|
41
|
<dependency>
|
42
|
<groupId>eu.dnetlib</groupId>
|
43
|
<artifactId>cnr-resultset-inspector</artifactId>
|
44
|
<version>[2.0.0,3.0.0)</version>
|
45
|
</dependency>
|
46
|
|
47
|
<!-- Vocabulary REST publisher -->
|
48
|
<dependency>
|
49
|
<groupId>eu.dnetlib</groupId>
|
50
|
<artifactId>dnet-vocabulary-publisher</artifactId>
|
51
|
<version>[2.0.0,3.0.0)</version>
|
52
|
</dependency>
|
53
|
|
54
|
<!-- OAI publisher service -->
|
55
|
<dependency>
|
56
|
<groupId>eu.dnetlib</groupId>
|
57
|
<artifactId>cnr-data-information-oai-publisher</artifactId>
|
58
|
<version>[8.0.0,9.0.0)</version>
|
59
|
</dependency>
|
60
|
|
61
|
<!-- Inspector security -->
|
62
|
<dependency>
|
63
|
<groupId>eu.dnetlib</groupId>
|
64
|
<artifactId>cnr-inspector-security</artifactId>
|
65
|
<version>[1.0.0,2.0.0)</version>
|
66
|
</dependency>
|
67
|
<dependency>
|
68
|
<groupId>eu.dnetlib</groupId>
|
69
|
<artifactId>dnet-webapp-monitoring</artifactId>
|
70
|
<version>[1.0.0,2.0.0)</version>
|
71
|
</dependency>
|
72
|
|
73
|
<dependency>
|
74
|
<groupId>xerces</groupId>
|
75
|
<artifactId>xercesImpl</artifactId>
|
76
|
<version>2.11.0</version>
|
77
|
<scope>compile</scope>
|
78
|
</dependency>
|
79
|
|
80
|
|
81
|
<!-- Index service -->
|
82
|
<dependency>
|
83
|
<groupId>eu.dnetlib</groupId>
|
84
|
<artifactId>dnet-index-solr-service</artifactId>
|
85
|
<version>[2.4.6-solr75-SNAPSHOT]</version>
|
86
|
</dependency>
|
87
|
|
88
|
<!--
|
89
|
<dependency>
|
90
|
<groupId>eu.dnetlib</groupId>
|
91
|
<artifactId>dnet-datasource-rest-api</artifactId>
|
92
|
<version>[0.0.1,2.0.0)</version>
|
93
|
</dependency>
|
94
|
-->
|
95
|
<dependency>
|
96
|
<groupId>eu.dnetlib</groupId>
|
97
|
<artifactId>dnet-directindex-api</artifactId>
|
98
|
<version>[2.1.5-solr75-SNAPSHOT,3.0.0)</version>
|
99
|
<exclusions>
|
100
|
<exclusion>
|
101
|
<groupId>log4j</groupId>
|
102
|
<artifactId>log4j</artifactId>
|
103
|
</exclusion>
|
104
|
<exclusion>
|
105
|
<artifactId>servlet-api</artifactId>
|
106
|
<groupId>javax.servlet</groupId>
|
107
|
</exclusion>
|
108
|
</exclusions>
|
109
|
</dependency>
|
110
|
|
111
|
|
112
|
<dependency>
|
113
|
<groupId>javax.servlet</groupId>
|
114
|
<artifactId>javax.servlet-api</artifactId>
|
115
|
<version>${javax.servlet.version}</version>
|
116
|
<scope>provided</scope>
|
117
|
</dependency>
|
118
|
|
119
|
<!-- SWAGGER -->
|
120
|
<dependency>
|
121
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
122
|
<artifactId>jackson-datatype-joda</artifactId>
|
123
|
<version>2.6.6</version>
|
124
|
</dependency>
|
125
|
<dependency>
|
126
|
<groupId>joda-time</groupId>
|
127
|
<artifactId>joda-time</artifactId>
|
128
|
<version>2.8.2</version>
|
129
|
</dependency>
|
130
|
|
131
|
<dependency>
|
132
|
<groupId>io.springfox</groupId>
|
133
|
<artifactId>springfox-swagger2</artifactId>
|
134
|
<version>${springfox-version}</version>
|
135
|
</dependency>
|
136
|
<dependency>
|
137
|
<groupId>io.springfox</groupId>
|
138
|
<artifactId>springfox-swagger-ui</artifactId>
|
139
|
<version>${springfox-version}</version>
|
140
|
</dependency>
|
141
|
|
142
|
<dependency>
|
143
|
<groupId>org.hibernate</groupId>
|
144
|
<artifactId>hibernate-validator</artifactId>
|
145
|
<version>5.2.4.Final</version>
|
146
|
</dependency>
|
147
|
|
148
|
</dependencies>
|
149
|
<properties>
|
150
|
<springfox-version>2.5.0</springfox-version>
|
151
|
<dnet.container.context>provision</dnet.container.context>
|
152
|
<dnet.container.port>8980</dnet.container.port>
|
153
|
</properties>
|
154
|
</project>
|