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/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet45-parent</artifactId>
7
		<version>1.0.0</version>
8
	</parent>
9
	<artifactId>uoa-notification-service</artifactId>
10
	<version>1.0.6-SNAPSHOT</version>
11
	<packaging>jar</packaging>
12
	<scm>
13
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-notification-service/trunk</developerConnection>
14
	</scm>
15
	<name>uoa-notification-service</name>
16
	<properties>
17
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
19
		<java.version>1.8</java.version>
20
        <timestampNotificationLibrary>${maven.build.timestamp}</timestampNotificationLibrary>
21
        <maven.build.timestamp.format>E MMM dd HH:mm:ss z yyyy</maven.build.timestamp.format>
22
	</properties>
23
	<dependencyManagement>
24
		<dependencies>
25
			<dependency>
26
				<groupId>org.springframework.boot</groupId>
27
				<artifactId>spring-boot-dependencies</artifactId>
28
				<version>1.5.8.RELEASE</version>
29
				<type>pom</type>
30
				<scope>import</scope>
31
			</dependency>
32
		</dependencies>
33
	</dependencyManagement>
34
	<dependencies>
35
		<dependency>
36
			<groupId>org.springframework.boot</groupId>
37
			<artifactId>spring-boot-starter-web</artifactId>
38
			<exclusions>
39
				<exclusion>
40
					<groupId> org.springframework.boot</groupId>
41
					<artifactId>spring-boot-starter-logging</artifactId>
42
				</exclusion>
43
			</exclusions>
44
		</dependency>
45
		<dependency>
46
			<groupId>org.springframework.boot</groupId>
47
			<artifactId>spring-boot-starter-data-mongodb</artifactId>
48
		</dependency>
49
		<!-- Starter for using Spring Security -->
50
		<dependency>
51
			<groupId>org.springframework.boot</groupId>
52
			<artifactId>spring-boot-starter-security</artifactId>
53
		</dependency>
54
		<dependency>
55
			<groupId>eu.dnetlib</groupId>
56
			<artifactId>uoa-authorization-library</artifactId>
57
			<version>2.1.0</version>
58
		</dependency>
59
		<dependency>
60
			<groupId>com.google.code.gson</groupId>
61
			<artifactId>gson</artifactId>
62
			<version>2.8.2</version>
63
		</dependency>
64
		<dependency>
65
			<groupId>log4j</groupId>
66
			<artifactId>log4j</artifactId>
67
			<version>1.2.17</version>
68
		</dependency>
69
		<!-- https://mvnrepository.com/artifact/commons-validator/commons-validator -->
70
		<dependency>
71
			<groupId>commons-validator</groupId>
72
			<artifactId>commons-validator</artifactId>
73
			<version>1.7</version>
74
		</dependency>
75

    
76
	</dependencies>
77
	<build>
78
		<plugins>
79
		</plugins>
80
        <finalName>uoa-notification-service</finalName>
81
        <resources>
82
            <resource>
83
                <directory>src/main/resources</directory>
84
                <filtering>true</filtering>
85
            </resource>
86
        </resources>
87
	</build>
88
</project>
    (1-1/1)