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/xsd/maven-4.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-modular-cleaning-rules-ui</artifactId>
12
	<packaging>jar</packaging>
13
	<version>1.0.1-SNAPSHOT</version>
14
	<dependencies>
15
		<dependency>
16
			<groupId>eu.dnetlib</groupId>
17
			<artifactId>dnet-modular-ui</artifactId>
18
			<version>2.0.0-SNAPSHOT</version>
19
		</dependency>
20
		
21
		<dependency>
22
			<groupId>javax.servlet</groupId>
23
			<artifactId>javax.servlet-api</artifactId>
24
			<version>${javax.servlet.version}</version>
25
			<scope>provided</scope>
26
		</dependency>
27
		
28
		<dependency>
29
			<groupId>org.projectlombok</groupId>
30
			<artifactId>lombok</artifactId>
31
			<version>1.12.6</version>
32
			<scope>provided</scope>
33
		</dependency>
34
	</dependencies>
35

    
36
	<properties>
37
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38
	</properties>
39
</project>
(2-2/2)