1 |
49206
|
panagiotis
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
3 |
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4 |
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 |
49764
|
panagiotis
|
|
6 |
|
|
<parent>
|
7 |
|
|
<groupId>eu.dnetlib</groupId>
|
8 |
|
|
<artifactId>dnet45-parent</artifactId>
|
9 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
10 |
|
|
</parent>
|
11 |
49206
|
panagiotis
|
<modelVersion>4.0.0</modelVersion>
|
12 |
|
|
<groupId>eu.dnetlib</groupId>
|
13 |
50637
|
panagiotis
|
<artifactId>repoManager-service-depricatedAPI</artifactId>
|
14 |
49764
|
panagiotis
|
<version>1.0.0-SNAPSHOT</version>
|
15 |
50637
|
panagiotis
|
<packaging>jar</packaging>
|
16 |
49206
|
panagiotis
|
|
17 |
|
|
|
18 |
|
|
<build>
|
19 |
|
|
<plugins>
|
20 |
|
|
<plugin>
|
21 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
22 |
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
23 |
|
|
<version>3.1</version>
|
24 |
|
|
<configuration>
|
25 |
49764
|
panagiotis
|
<source>1.8</source>
|
26 |
|
|
<target>1.8</target>
|
27 |
49206
|
panagiotis
|
<encoding>UTF-8</encoding>
|
28 |
|
|
</configuration>
|
29 |
|
|
</plugin>
|
30 |
|
|
|
31 |
|
|
<plugin>
|
32 |
|
|
<artifactId>maven-war-plugin</artifactId>
|
33 |
|
|
<version>2.6</version>
|
34 |
|
|
<configuration>
|
35 |
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
36 |
|
|
</configuration>
|
37 |
|
|
</plugin>
|
38 |
50075
|
panagiotis
|
<!--<plugin>
|
39 |
49206
|
panagiotis
|
<groupId>cz.habarta.typescript-generator</groupId>
|
40 |
|
|
<artifactId>typescript-generator-maven-plugin</artifactId>
|
41 |
50075
|
panagiotis
|
<version>1.29.366</version>
|
42 |
49206
|
panagiotis
|
<executions>
|
43 |
|
|
<execution>
|
44 |
|
|
<id>generate1</id>
|
45 |
|
|
<goals>
|
46 |
|
|
<goal>generate</goal>
|
47 |
|
|
</goals>
|
48 |
|
|
<configuration>
|
49 |
|
|
<jsonLibrary>jackson2</jsonLibrary>
|
50 |
|
|
<outputFileType>implementationFile</outputFileType>
|
51 |
|
|
<mapClasses>asClasses</mapClasses>
|
52 |
|
|
<classPatterns>
|
53 |
|
|
<pattern>eu.dnetlib.domain.data.*</pattern>
|
54 |
|
|
</classPatterns>
|
55 |
|
|
<outputFile>target/typeScriptClasses.ts</outputFile>
|
56 |
|
|
<outputKind>module</outputKind>
|
57 |
|
|
</configuration>
|
58 |
|
|
</execution>
|
59 |
|
|
</executions>
|
60 |
49362
|
panagiotis
|
</plugin>-->
|
61 |
49206
|
panagiotis
|
</plugins>
|
62 |
|
|
</build>
|
63 |
|
|
|
64 |
|
|
<dependencies>
|
65 |
49378
|
panagiotis
|
|
66 |
49206
|
panagiotis
|
<dependency>
|
67 |
49378
|
panagiotis
|
<groupId>org.springframework</groupId>
|
68 |
|
|
<artifactId>spring-webmvc</artifactId>
|
69 |
|
|
<version>${spring.version}</version>
|
70 |
|
|
</dependency>
|
71 |
|
|
|
72 |
|
|
<dependency>
|
73 |
|
|
<groupId>org.hibernate</groupId>
|
74 |
|
|
<artifactId>hibernate-validator-annotation-processor</artifactId>
|
75 |
|
|
<version>4.1.0.Final</version>
|
76 |
|
|
</dependency>
|
77 |
|
|
|
78 |
|
|
<dependency>
|
79 |
49362
|
panagiotis
|
<groupId>log4j</groupId>
|
80 |
|
|
<artifactId>log4j</artifactId>
|
81 |
|
|
<version>(1.2, 1.5]</version>
|
82 |
|
|
<scope>compile</scope>
|
83 |
49206
|
panagiotis
|
</dependency>
|
84 |
49304
|
panagiotis
|
|
85 |
49206
|
panagiotis
|
<dependency>
|
86 |
|
|
<groupId>eu.dnetlib</groupId>
|
87 |
|
|
<artifactId>dnet-runtime</artifactId>
|
88 |
49764
|
panagiotis
|
<version>[1.0.0-SNAPSHOT, 2.0.0)</version>
|
89 |
49206
|
panagiotis
|
<exclusions>
|
90 |
|
|
<exclusion> <!-- declare the exclusion here -->
|
91 |
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
92 |
|
|
<artifactId>geronimo-javamail_1.4_spec</artifactId>
|
93 |
|
|
</exclusion>
|
94 |
|
|
</exclusions>
|
95 |
|
|
</dependency>
|
96 |
50331
|
panagiotis
|
|
97 |
49206
|
panagiotis
|
<dependency>
|
98 |
49362
|
panagiotis
|
<groupId>eu.dnetlib</groupId>
|
99 |
|
|
<artifactId>uoa-utils</artifactId>
|
100 |
49764
|
panagiotis
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
101 |
49206
|
panagiotis
|
</dependency>
|
102 |
49764
|
panagiotis
|
|
103 |
49206
|
panagiotis
|
<dependency>
|
104 |
49362
|
panagiotis
|
<groupId>eu.dnetlib</groupId>
|
105 |
|
|
<artifactId>uoa-domain</artifactId>
|
106 |
49764
|
panagiotis
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
107 |
|
|
<exclusions>
|
108 |
|
|
<exclusion> <!-- declare the exclusion here -->
|
109 |
|
|
<groupId>cglib</groupId>
|
110 |
|
|
<artifactId>cglib</artifactId>
|
111 |
|
|
</exclusion>
|
112 |
|
|
</exclusions>
|
113 |
49206
|
panagiotis
|
</dependency>
|
114 |
49764
|
panagiotis
|
|
115 |
|
|
|
116 |
49206
|
panagiotis
|
<dependency>
|
117 |
49764
|
panagiotis
|
<groupId>cglib</groupId>
|
118 |
|
|
<artifactId>cglib-nodep</artifactId>
|
119 |
|
|
<version>2.2</version>
|
120 |
|
|
</dependency>
|
121 |
|
|
|
122 |
|
|
<dependency>
|
123 |
49362
|
panagiotis
|
<groupId>eu.dnetlib</groupId>
|
124 |
|
|
<artifactId>uoa-commons</artifactId>
|
125 |
49764
|
panagiotis
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
126 |
49206
|
panagiotis
|
</dependency>
|
127 |
|
|
<dependency>
|
128 |
49362
|
panagiotis
|
<groupId>eu.dnetlib</groupId>
|
129 |
|
|
<artifactId>uoa-clients</artifactId>
|
130 |
49764
|
panagiotis
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
131 |
49206
|
panagiotis
|
</dependency>
|
132 |
|
|
<dependency>
|
133 |
49362
|
panagiotis
|
<groupId>eu.dnetlib</groupId>
|
134 |
|
|
<artifactId>uoa-hcm</artifactId>
|
135 |
49764
|
panagiotis
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
136 |
49206
|
panagiotis
|
</dependency>
|
137 |
|
|
|
138 |
|
|
<dependency>
|
139 |
49362
|
panagiotis
|
<groupId>commons-io</groupId>
|
140 |
|
|
<artifactId>commons-io</artifactId>
|
141 |
|
|
<version>2.4</version>
|
142 |
49206
|
panagiotis
|
</dependency>
|
143 |
|
|
|
144 |
|
|
<dependency>
|
145 |
|
|
<groupId>se.kb</groupId>
|
146 |
|
|
<artifactId>oai4j</artifactId>
|
147 |
|
|
<version>[0.6b1,)</version>
|
148 |
|
|
</dependency>
|
149 |
49362
|
panagiotis
|
<dependency>
|
150 |
|
|
<groupId>xalan</groupId>
|
151 |
|
|
<artifactId>xalan</artifactId>
|
152 |
|
|
<version>2.7.2</version>
|
153 |
|
|
</dependency>
|
154 |
49206
|
panagiotis
|
|
155 |
|
|
<dependency>
|
156 |
49362
|
panagiotis
|
<groupId>org.slf4j</groupId>
|
157 |
|
|
<artifactId>slf4j-log4j12</artifactId>
|
158 |
|
|
<version>1.5.6</version>
|
159 |
|
|
</dependency>
|
160 |
|
|
|
161 |
49397
|
panagiotis
|
<dependency>
|
162 |
49206
|
panagiotis
|
<groupId>xerces</groupId>
|
163 |
|
|
<artifactId>xercesImpl</artifactId>
|
164 |
|
|
<version>2.11.0</version>
|
165 |
49397
|
panagiotis
|
</dependency>
|
166 |
49206
|
panagiotis
|
|
167 |
49304
|
panagiotis
|
<dependency>
|
168 |
49362
|
panagiotis
|
<groupId>com.fasterxml.jackson.core</groupId>
|
169 |
|
|
<artifactId>jackson-core</artifactId>
|
170 |
|
|
<version>2.5.1</version>
|
171 |
|
|
<scope>compile</scope>
|
172 |
|
|
</dependency>
|
173 |
|
|
<dependency>
|
174 |
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
175 |
|
|
<artifactId>jackson-databind</artifactId>
|
176 |
|
|
<version>2.5.1</version>
|
177 |
|
|
<scope>compile</scope>
|
178 |
|
|
</dependency>
|
179 |
49764
|
panagiotis
|
|
180 |
49362
|
panagiotis
|
<dependency>
|
181 |
|
|
<groupId>org.springframework</groupId>
|
182 |
|
|
<artifactId>spring-context</artifactId>
|
183 |
49764
|
panagiotis
|
<version>${spring.version}</version>
|
184 |
49362
|
panagiotis
|
</dependency>
|
185 |
49868
|
panagiotis
|
|
186 |
49362
|
panagiotis
|
<dependency>
|
187 |
49868
|
panagiotis
|
<groupId>org.springframework</groupId>
|
188 |
|
|
<artifactId>spring-jdbc</artifactId>
|
189 |
|
|
<version>${spring.version}</version>
|
190 |
|
|
</dependency>
|
191 |
|
|
|
192 |
|
|
<dependency>
|
193 |
49304
|
panagiotis
|
<groupId>com.sun.jersey</groupId>
|
194 |
|
|
<artifactId>jersey-client</artifactId>
|
195 |
|
|
<version>1.19.3</version>
|
196 |
|
|
</dependency>
|
197 |
|
|
|
198 |
|
|
<dependency>
|
199 |
|
|
<groupId>org.aksw.gson</groupId>
|
200 |
|
|
<artifactId>gson-utils-core</artifactId>
|
201 |
|
|
<version>1.0.0</version>
|
202 |
|
|
</dependency>
|
203 |
49362
|
panagiotis
|
<dependency>
|
204 |
|
|
<groupId>org.json</groupId>
|
205 |
|
|
<artifactId>json</artifactId>
|
206 |
|
|
<version>20080701</version>
|
207 |
|
|
</dependency>
|
208 |
49931
|
panagiotis
|
|
209 |
|
|
<dependency>
|
210 |
|
|
<groupId>io.springfox</groupId>
|
211 |
|
|
<artifactId>springfox-swagger2</artifactId>
|
212 |
|
|
<version>2.7.0</version>
|
213 |
|
|
</dependency>
|
214 |
|
|
<dependency>
|
215 |
|
|
<groupId>io.springfox</groupId>
|
216 |
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
217 |
50075
|
panagiotis
|
<version>2.7.0</version>
|
218 |
49931
|
panagiotis
|
</dependency>
|
219 |
50075
|
panagiotis
|
|
220 |
|
|
<!-- https://mvnrepository.com/artifact/cz.habarta.typescript-generator/typescript-generator-maven-plugin -->
|
221 |
50383
|
panagiotis
|
<!--<dependency>
|
222 |
50075
|
panagiotis
|
<groupId>cz.habarta.typescript-generator</groupId>
|
223 |
|
|
<artifactId>typescript-generator-maven-plugin</artifactId>
|
224 |
|
|
<version>1.29.366</version>
|
225 |
50383
|
panagiotis
|
</dependency>-->
|
226 |
50273
|
panagiotis
|
<!-- https://mvnrepository.com/artifact/postgresql/postgresql -->
|
227 |
|
|
<dependency>
|
228 |
|
|
<groupId>postgresql</groupId>
|
229 |
|
|
<artifactId>postgresql</artifactId>
|
230 |
|
|
<version>9.1-901.jdbc3</version>
|
231 |
|
|
</dependency>
|
232 |
50075
|
panagiotis
|
|
233 |
50585
|
panagiotis
|
<!--<dependency>
|
234 |
50372
|
panagiotis
|
<groupId>org.mitre</groupId>
|
235 |
|
|
<artifactId>openid-connect-client</artifactId>
|
236 |
|
|
<version>1.3.0</version>
|
237 |
|
|
<exclusions>
|
238 |
|
|
<exclusion>
|
239 |
|
|
<groupId>org.slf4j</groupId>
|
240 |
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
241 |
|
|
</exclusion>
|
242 |
|
|
</exclusions>
|
243 |
50585
|
panagiotis
|
</dependency>-->
|
244 |
50075
|
panagiotis
|
|
245 |
50585
|
panagiotis
|
<!--<dependency>
|
246 |
50372
|
panagiotis
|
<groupId>org.springframework.session</groupId>
|
247 |
|
|
<artifactId>spring-session-data-redis</artifactId>
|
248 |
|
|
<version>1.3.1.RELEASE</version>
|
249 |
|
|
<type>pom</type>
|
250 |
|
|
</dependency>
|
251 |
|
|
<dependency>
|
252 |
|
|
<groupId>biz.paluch.redis</groupId>
|
253 |
|
|
<artifactId>lettuce</artifactId>
|
254 |
|
|
<version>3.5.0.Final</version>
|
255 |
50585
|
panagiotis
|
</dependency>-->
|
256 |
50273
|
panagiotis
|
|
257 |
50372
|
panagiotis
|
|
258 |
49764
|
panagiotis
|
</dependencies>
|
259 |
49304
|
panagiotis
|
|
260 |
50075
|
panagiotis
|
</project>
|