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
	<modelVersion>4.0.0</modelVersion>
5
	<parent>
6
		<groupId>eu.dnetlib</groupId>
7
		<artifactId>dnet45-parent</artifactId>
8
		<version>1.0.0</version>
9
	</parent>
10
	<artifactId>uoa-authorization-library</artifactId>
11
	<version>1.0.0-SNAPSHOT</version>
12
	<packaging>jar</packaging>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-authorization-library/trunk</developerConnection>
15
	</scm>
16
	<name>uoa-authorization-library</name>
17

    
18
	<properties>
19
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
21
		<java.version>1.8</java.version>
22
        <timestampAuthorizationLibrary>${maven.build.timestamp}</timestampAuthorizationLibrary>
23
        <maven.build.timestamp.format>E MMM dd HH:mm:ss z yyyy</maven.build.timestamp.format>
24
	</properties>
25
	<dependencyManagement>
26
		<dependencies>
27
			<dependency>
28
				<groupId>org.springframework.boot</groupId>
29
				<artifactId>spring-boot-dependencies</artifactId>
30
				<version>1.5.8.RELEASE</version>
31
				<type>pom</type>
32
				<scope>import</scope>
33
			</dependency>
34
		</dependencies>
35
	</dependencyManagement>
36
	<dependencies>
37
		<dependency>
38
			<groupId>org.springframework.boot</groupId>
39
			<artifactId>spring-boot-starter-web</artifactId>
40
			<exclusions>
41
				<exclusion>
42
					<groupId> org.springframework.boot</groupId>
43
					<artifactId>spring-boot-starter-logging</artifactId>
44
				</exclusion>
45
			</exclusions>
46
		</dependency>
47
		<!-- Starter for using Spring Security -->
48
		<dependency>
49
			<groupId>org.springframework.boot</groupId>
50
			<artifactId>spring-boot-starter-security</artifactId>
51
		</dependency>
52
		<dependency>
53
			<groupId>com.google.code.gson</groupId>
54
			<artifactId>gson</artifactId>
55
			<version>2.8.2</version>
56
		</dependency>
57
		<dependency>
58
			<groupId>log4j</groupId>
59
			<artifactId>log4j</artifactId>
60
			<version>1.2.17</version>
61
		</dependency>
62
    </dependencies>
63
	<build>
64
		<plugins>
65
		</plugins>
66
        <finalName>uoa-authorization-library</finalName>
67
        <resources>
68
            <resource>
69
                <directory>src/main/resources</directory>
70
                <filtering>true</filtering>
71
            </resource>
72
        </resources>
73
	</build>
74
</project>
    (1-1/1)