source: phonelux-backend/pom.xml@ f25d07e

Last change on this file since f25d07e was f25d07e, checked in by Marko <Marko@…>, 22 months ago

Edited registration and login services

  • Property mode set to 100644
File size: 2.4 KB
Line 
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.springframework.boot</groupId>
7 <artifactId>spring-boot-starter-parent</artifactId>
8 <version>2.7.3</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>finki.it</groupId>
12 <artifactId>phonelux-backend</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>phonelux-backend</name>
15 <description>Backend application for project Phonelux</description>
16 <properties>
17 <java.version>17</java.version>
18 </properties>
19 <dependencies>
20
21 <dependency>
22 <groupId>org.springframework.boot</groupId>
23 <artifactId>spring-boot-starter-data-jpa</artifactId>
24 </dependency>
25
26 <dependency>
27 <groupId>org.springframework.boot</groupId>
28 <artifactId>spring-boot-starter-security</artifactId>
29 </dependency>
30
31 <dependency>
32 <groupId>org.springframework.boot</groupId>
33 <artifactId>spring-boot-starter-web</artifactId>
34 </dependency>
35
36 <dependency>
37 <groupId>org.springframework.boot</groupId>
38 <artifactId>spring-boot-starter-mail</artifactId>
39 </dependency>
40
41 <dependency>
42 <groupId>org.postgresql</groupId>
43 <artifactId>postgresql</artifactId>
44 <scope>runtime</scope>
45 </dependency>
46
47 <dependency>
48 <groupId>org.projectlombok</groupId>
49 <artifactId>lombok</artifactId>
50 <optional>true</optional>
51 </dependency>
52
53 <dependency>
54 <groupId>org.springframework.boot</groupId>
55 <artifactId>spring-boot-starter-test</artifactId>
56 <scope>test</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>org.springframework.security</groupId>
61 <artifactId>spring-security-test</artifactId>
62 <scope>test</scope>
63 </dependency>
64
65 <dependency>
66 <groupId>com.auth0</groupId>
67 <artifactId>java-jwt</artifactId>
68 <version>4.0.0</version>
69 </dependency>
70
71 </dependencies>
72
73 <build>
74 <plugins>
75 <plugin>
76 <groupId>org.springframework.boot</groupId>
77 <artifactId>spring-boot-maven-plugin</artifactId>
78 <configuration>
79 <excludes>
80 <exclude>
81 <groupId>org.projectlombok</groupId>
82 <artifactId>lombok</artifactId>
83 </exclude>
84 </excludes>
85 </configuration>
86 </plugin>
87 </plugins>
88 </build>
89
90</project>
Note: See TracBrowser for help on using the repository browser.