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/branches/beta</developerConnection>
16
        </scm>
17

    
18
	<build>
19
		<plugins>
20
			<plugin>
21
				<groupId>org.apache.maven.plugins</groupId>
22
				<artifactId>maven-war-plugin</artifactId>
23
				<version>2.1.1</version>
24
				<configuration>
25
					<archive>
26
						<manifestEntries>
27
							<version>3.5.9</version>
28
						</manifestEntries>
29
					</archive>
30
				</configuration>
31
			</plugin>
32
		</plugins>
33

    
34
		<finalName>shadowSearch</finalName>
35

    
36
	</build>
37

    
38
	<dependencies>
39
		<dependency>
40
			<groupId>eu.dnetlib</groupId>
41
			<artifactId>uoa-search</artifactId>
42
			<version>[3.5.9]</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>eu.dnetlib</groupId>
46
			<artifactId>uoa-clients</artifactId>
47
			<version>[2.0.0, 3.0.0)</version>
48
			<exclusions>
49
				<exclusion>
50
					<groupId>cglib</groupId>
51
					<artifactId>cglib</artifactId>
52
				</exclusion>
53
			</exclusions>
54
		</dependency>
55
		<dependency>
56
			<groupId>eu.dnetlib</groupId>
57
			<artifactId>uoa-hcm</artifactId>
58
			<version>[2.0.0, 3.0.0)</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>eu.dnetlib</groupId>
62
			<artifactId>dnet-runtime</artifactId>
63
			<version>[1.0.0,2.0.0)</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>cglib</groupId>
67
			<artifactId>cglib-nodep</artifactId>
68
			<version>2.2</version>
69
		</dependency>
70
		<dependency>
71
			<groupId>org.apache.cxf</groupId>
72
			<artifactId>cxf-rt-transports-http</artifactId>
73
			<version>${cxf.version}</version>
74
		</dependency>
75
        <dependency>
76
            <groupId>jstl</groupId>
77
            <artifactId>jstl</artifactId>
78
            <version>1.2</version>
79
        </dependency>
80
		<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-nop -->
81
		<dependency>
82
			<groupId>org.slf4j</groupId>
83
			<artifactId>slf4j-nop</artifactId>
84
			<version>1.7.21</version>
85
		</dependency>
86
		<dependency>
87
			<groupId>org.slf4j</groupId>
88
			<artifactId>slf4j-log4j12</artifactId>
89
			<version>1.7.5</version>
90
        </dependency>
91
		<dependency>
92
			<groupId>eu.dnetlib</groupId>
93
			<artifactId>cnr-service-common</artifactId>
94
			<version>[2.1.6, 3.0.0)</version>
95
			<exclusions>
96
				<exclusion>
97
					<groupId>xml-apis</groupId>
98
					<artifactId>xml-apis</artifactId>
99
				</exclusion>
100
			</exclusions>
101
		</dependency>
102

    
103
		<!-- https://mvnrepository.com/artifact/xml-apis/xml-apis -->
104
		<dependency>
105
			<groupId>xml-apis</groupId>
106
			<artifactId>xml-apis</artifactId>
107
			<version>1.4.01</version>
108
		</dependency>
109

    
110
    </dependencies>
111

    
112

    
113
</project>
    (1-1/1)