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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet45-container-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>dnet-functionality-services</artifactId>
11
	<packaging>war</packaging>
12
	<version>2.0.0-SNAPSHOT</version>
13
  	<scm>
14
                <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-functionality-services/branches/prod</developerConnection>
15
        </scm>
16

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

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

    
100
		<!-- https://mvnrepository.com/artifact/xml-apis/xml-apis -->
101
		<dependency>
102
			<groupId>xml-apis</groupId>
103
			<artifactId>xml-apis</artifactId>
104
			<version>1.4.01</version>
105
		</dependency>
106

    
107
	</dependencies>
108

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