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"
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
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-shadow-functionality-services</artifactId>
12
	<packaging>war</packaging>
13
	<version>2.0.0-SNAPSHOT</version>
14
  	<scm>
15
                <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-shadow-functionality-services/trunk</developerConnection>
16
        </scm>
17
	<dependencies>
18
		<dependency>
19
			<groupId>eu.dnetlib</groupId>
20
			<artifactId>uoa-search</artifactId>
21
			<version>[3.0.0-SNAPSHOT, 4.0.0)</version>
22
		</dependency>
23
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25
			<artifactId>uoa-clients</artifactId>
26
			<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
27
			<exclusions>
28
				<exclusion>
29
					<groupId>cglib</groupId>
30
					<artifactId>cglib</artifactId>
31
				</exclusion>
32
			</exclusions>
33
		</dependency>
34
		<dependency>
35
			<groupId>eu.dnetlib</groupId>
36
			<artifactId>uoa-hcm</artifactId>
37
			<version>[1.1.0, 2.0.0)</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>eu.dnetlib</groupId>
41
			<artifactId>dnet-runtime</artifactId>
42
			<version>[1.0.0-SNAPSHOT, 2.0.0)</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>cglib</groupId>
46
			<artifactId>cglib-nodep</artifactId>
47
			<version>2.2</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>org.apache.cxf</groupId>
51
			<artifactId>cxf-rt-transports-http</artifactId>
52
			<version>${cxf.version}</version>
53
		</dependency>
54
        <dependency>
55
            <groupId>jstl</groupId>
56
            <artifactId>jstl</artifactId>
57
            <version>1.2</version>
58
        </dependency>
59
		<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-nop -->
60
		<dependency>
61
			<groupId>org.slf4j</groupId>
62
			<artifactId>slf4j-nop</artifactId>
63
			<version>1.7.21</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>org.slf4j</groupId>
67
			<artifactId>slf4j-log4j12</artifactId>
68
			<version>1.7.5</version>
69
        </dependency>
70
		<dependency>
71
			<groupId>eu.dnetlib</groupId>
72
			<artifactId>cnr-service-common</artifactId>
73
			<version>[2.1.6-SNAPSHOT, 3.0.0)</version>
74
			<exclusions>
75
				<exclusion>
76
					<groupId>xml-apis</groupId>
77
					<artifactId>xml-apis</artifactId>
78
				</exclusion>
79
			</exclusions>
80
		</dependency>
81

    
82
		<!-- https://mvnrepository.com/artifact/xml-apis/xml-apis -->
83
		<dependency>
84
			<groupId>xml-apis</groupId>
85
			<artifactId>xml-apis</artifactId>
86
			<version>1.4.01</version>
87
		</dependency>
88

    
89
    </dependencies>
90

    
91
<build>
92
    <finalName>shadowSearch</finalName>
93
</build>
94
</project>
    (1-1/1)