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 |
|
|
<modelVersion>4.0.0</modelVersion>
|
6 |
|
|
|
7 |
|
|
<groupId>eu.dnetlib</groupId>
|
8 |
|
|
<artifactId>uoa-repository-manager-service</artifactId>
|
9 |
|
|
<version>1.0-SNAPSHOT</version>
|
10 |
|
|
<packaging>war</packaging>
|
11 |
|
|
|
12 |
|
|
|
13 |
49362
|
panagiotis
|
<properties>
|
14 |
|
|
<spring.version>[4.0.0.RELEASE]</spring.version>
|
15 |
|
|
</properties>
|
16 |
49206
|
panagiotis
|
|
17 |
|
|
<build>
|
18 |
|
|
<plugins>
|
19 |
|
|
<plugin>
|
20 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
21 |
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
22 |
|
|
<version>3.1</version>
|
23 |
|
|
<!-- compile for Java 1.8 -->
|
24 |
|
|
<configuration>
|
25 |
49362
|
panagiotis
|
<source>1.7</source>
|
26 |
|
|
<target>1.7</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 |
49362
|
panagiotis
|
<!--<plugin>
|
39 |
49206
|
panagiotis
|
<groupId>cz.habarta.typescript-generator</groupId>
|
40 |
|
|
<artifactId>typescript-generator-maven-plugin</artifactId>
|
41 |
|
|
<version>1.27.339</version>
|
42 |
|
|
<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 |
|
|
<version>[1.0.0]</version>
|
89 |
|
|
<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 |
|
|
<exclusion> <!-- declare the exclusion here -->
|
95 |
|
|
<groupId>com.sun.xml.bind</groupId>
|
96 |
|
|
<artifactId>jaxb-impl</artifactId>
|
97 |
|
|
</exclusion>
|
98 |
|
|
</exclusions>
|
99 |
|
|
</dependency>
|
100 |
|
|
<dependency>
|
101 |
49362
|
panagiotis
|
<groupId>eu.dnetlib</groupId>
|
102 |
|
|
<artifactId>uoa-utils</artifactId>
|
103 |
|
|
<version>[1.2.0-SNAPSHOT, )</version>
|
104 |
49206
|
panagiotis
|
</dependency>
|
105 |
|
|
<dependency>
|
106 |
49362
|
panagiotis
|
<groupId>eu.dnetlib</groupId>
|
107 |
|
|
<artifactId>uoa-domain</artifactId>
|
108 |
|
|
<version>[1.2.0-SNAPSHOT, )</version>
|
109 |
49206
|
panagiotis
|
</dependency>
|
110 |
|
|
<dependency>
|
111 |
49362
|
panagiotis
|
<groupId>eu.dnetlib</groupId>
|
112 |
|
|
<artifactId>uoa-commons</artifactId>
|
113 |
|
|
<version>[1.2.0-SNAPSHOT, )</version>
|
114 |
49206
|
panagiotis
|
</dependency>
|
115 |
|
|
<dependency>
|
116 |
49362
|
panagiotis
|
<groupId>eu.dnetlib</groupId>
|
117 |
|
|
<artifactId>uoa-clients</artifactId>
|
118 |
|
|
<version>[1.2.0-SNAPSHOT, )</version>
|
119 |
49206
|
panagiotis
|
</dependency>
|
120 |
|
|
<dependency>
|
121 |
49362
|
panagiotis
|
<groupId>eu.dnetlib</groupId>
|
122 |
|
|
<artifactId>uoa-hcm</artifactId>
|
123 |
|
|
<version>[1.2.0-SNAPSHOT, )</version>
|
124 |
49206
|
panagiotis
|
</dependency>
|
125 |
|
|
|
126 |
|
|
<dependency>
|
127 |
49362
|
panagiotis
|
<groupId>commons-io</groupId>
|
128 |
|
|
<artifactId>commons-io</artifactId>
|
129 |
|
|
<version>2.4</version>
|
130 |
49206
|
panagiotis
|
</dependency>
|
131 |
|
|
|
132 |
|
|
<dependency>
|
133 |
|
|
<groupId>se.kb</groupId>
|
134 |
|
|
<artifactId>oai4j</artifactId>
|
135 |
|
|
<version>[0.6b1,)</version>
|
136 |
|
|
</dependency>
|
137 |
49362
|
panagiotis
|
<dependency>
|
138 |
|
|
<groupId>xalan</groupId>
|
139 |
|
|
<artifactId>xalan</artifactId>
|
140 |
|
|
<version>2.7.2</version>
|
141 |
|
|
</dependency>
|
142 |
49206
|
panagiotis
|
|
143 |
|
|
<dependency>
|
144 |
49362
|
panagiotis
|
<groupId>org.slf4j</groupId>
|
145 |
|
|
<artifactId>slf4j-log4j12</artifactId>
|
146 |
|
|
<version>1.5.6</version>
|
147 |
|
|
</dependency>
|
148 |
|
|
|
149 |
49397
|
panagiotis
|
<dependency>
|
150 |
49206
|
panagiotis
|
<groupId>xerces</groupId>
|
151 |
|
|
<artifactId>xercesImpl</artifactId>
|
152 |
|
|
<version>2.11.0</version>
|
153 |
49397
|
panagiotis
|
</dependency>
|
154 |
49206
|
panagiotis
|
|
155 |
49304
|
panagiotis
|
<dependency>
|
156 |
49362
|
panagiotis
|
<groupId>org.springframework</groupId>
|
157 |
|
|
<artifactId>spring-aop</artifactId>
|
158 |
|
|
<version>${spring.version}</version>
|
159 |
|
|
</dependency>
|
160 |
|
|
<dependency>
|
161 |
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
162 |
|
|
<artifactId>jackson-core</artifactId>
|
163 |
|
|
<version>2.5.1</version>
|
164 |
|
|
<scope>compile</scope>
|
165 |
|
|
</dependency>
|
166 |
|
|
<dependency>
|
167 |
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
168 |
|
|
<artifactId>jackson-databind</artifactId>
|
169 |
|
|
<version>2.5.1</version>
|
170 |
|
|
<scope>compile</scope>
|
171 |
|
|
</dependency>
|
172 |
|
|
<dependency>
|
173 |
|
|
<groupId>org.aspectj</groupId>
|
174 |
|
|
<artifactId>aspectjweaver</artifactId>
|
175 |
|
|
<version>1.7.3</version>
|
176 |
|
|
</dependency>
|
177 |
|
|
<dependency>
|
178 |
|
|
<groupId>org.springframework</groupId>
|
179 |
|
|
<artifactId>spring-context</artifactId>
|
180 |
|
|
<version>4.2.5.RELEASE</version>
|
181 |
|
|
</dependency>
|
182 |
|
|
<dependency>
|
183 |
49304
|
panagiotis
|
<groupId>com.sun.jersey</groupId>
|
184 |
|
|
<artifactId>jersey-client</artifactId>
|
185 |
|
|
<version>1.19.3</version>
|
186 |
|
|
</dependency>
|
187 |
|
|
|
188 |
|
|
<dependency>
|
189 |
|
|
<groupId>org.aksw.gson</groupId>
|
190 |
|
|
<artifactId>gson-utils-core</artifactId>
|
191 |
|
|
<version>1.0.0</version>
|
192 |
|
|
</dependency>
|
193 |
49362
|
panagiotis
|
<dependency>
|
194 |
|
|
<groupId>org.json</groupId>
|
195 |
|
|
<artifactId>json</artifactId>
|
196 |
|
|
<version>20080701</version>
|
197 |
|
|
</dependency>
|
198 |
49304
|
panagiotis
|
|
199 |
49410
|
panagiotis
|
|
200 |
49206
|
panagiotis
|
</dependencies>
|
201 |
|
|
|
202 |
|
|
<repositories>
|
203 |
|
|
<repository>
|
204 |
|
|
<id>dnet-deps</id>
|
205 |
|
|
<name>dnet-dependencies</name>
|
206 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
|
207 |
|
|
<layout>default</layout>
|
208 |
|
|
</repository>
|
209 |
|
|
<repository>
|
210 |
|
|
<id>dnet4-snapshots</id>
|
211 |
|
|
<name>D-Net 4 Snapshots</name>
|
212 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots</url>
|
213 |
|
|
<layout>default</layout>
|
214 |
|
|
<snapshots>
|
215 |
|
|
<enabled>true</enabled>
|
216 |
|
|
</snapshots>
|
217 |
|
|
</repository>
|
218 |
|
|
<repository>
|
219 |
|
|
<id>dnet4-releases</id>
|
220 |
|
|
<name>D-Net 4 Releases</name>
|
221 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-releases</url>
|
222 |
|
|
<layout>default</layout>
|
223 |
|
|
<snapshots>
|
224 |
|
|
<enabled>false</enabled>
|
225 |
|
|
</snapshots>
|
226 |
|
|
<releases>
|
227 |
|
|
<enabled>true</enabled>
|
228 |
|
|
</releases>
|
229 |
|
|
</repository>
|
230 |
|
|
</repositories>
|
231 |
|
|
|
232 |
|
|
</project>
|