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>dnet-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-functionality-services</artifactId>
12
	<packaging>war</packaging>
13
	<version>1.0.0-SNAPSHOT</version>
14
	<build>
15
		<plugins>
16
			<plugin>
17
				<groupId>eu.dnetlib</groupId>
18
				<artifactId>dnet-jetty-maven-plugin</artifactId>
19
				<version>6.1.11-SNAPSHOT</version>
20
				<configuration>
21
					<contextPath>/app</contextPath>
22
					<connectors>
23
						<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
24
							<port>8080</port>
25
							<maxIdleTime>60000</maxIdleTime>
26
						</connector>
27
					</connectors>
28
				</configuration>
29
			</plugin>
30
		</plugins>
31
	</build>
32
	<dependencies>
33
		<dependency>
34
			<groupId>eu.dnetlib</groupId>
35
			<artifactId>uoa-search</artifactId>
36
			<version>[1.0.0-SNAPSHOT,)</version>
37
			<exclusions> <!-- already included in tomcat7 -->
38
				<exclusion>
39
					<groupId>javax.servlet</groupId>
40
					<artifactId>javax.servlet-api</artifactId>
41
				</exclusion>
42
			</exclusions>
43
		</dependency>
44
		<dependency>
45
			<groupId>eu.dnetlib</groupId>
46
			<artifactId>uoa-clients</artifactId>
47
			<version>[1.0.0-SNAPSHOT,)</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>[1.0.0-SNAPSHOT,)</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>eu.dnetlib</groupId>
62
			<artifactId>dnet-runtime</artifactId>
63
			<version>[1.0.0-SNAPSHOT,)</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
    </dependencies>
81
</project>
(2-2/2)