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
		<relativePath></relativePath>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-webapp-monitoring</artifactId>
13
	<packaging>jar</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15
	<dependencies>
16
		<!-- javamelody-core -->
17
		<dependency>
18
			<groupId>net.bull.javamelody</groupId>
19
			<artifactId>javamelody-core</artifactId>
20
			<version>1.49.0</version>
21
		</dependency>
22
		<!-- itext, option to add PDF export -->
23
		<dependency>
24
			<groupId>com.lowagie</groupId>
25
			<artifactId>itext</artifactId>
26
			<version>2.1.7</version>
27
			<exclusions>
28
				<exclusion>
29
					<artifactId>bcmail-jdk14</artifactId>
30
					<groupId>bouncycastle</groupId>
31
				</exclusion>
32
				<exclusion>
33
					<artifactId>bcprov-jdk14</artifactId>
34
					<groupId>bouncycastle</groupId>
35
				</exclusion>
36
				<exclusion>
37
					<artifactId>bctsp-jdk14</artifactId>
38
					<groupId>bouncycastle</groupId>
39
				</exclusion>
40
			</exclusions>
41
		</dependency>
42
	</dependencies>
43
</project>
(2-2/2)