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-authorization-library</artifactId>
10
	<version>2.0.3-SNAPSHOT</version>
11
	<packaging>jar</packaging>
12
	<scm>
13
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-authorization-library/trunk</developerConnection>
14
	</scm>
15
	<name>uoa-authorization-library</name>
16

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