source: pom.xml

main
Last change on this file was d659b83, checked in by Marko_Gjorgjievski_201136 <marko.gjorgjievski@…>, 2 months ago

Commiting the whole project

  • Property mode set to 100644
File size: 3.2 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>3.1.8</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>mk.ukim.finki.fitnesstrackingapp</groupId>
12 <artifactId>FitnessTrackingApp</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>FitnessTrackingApp</name>
15 <description>Demo project for Spring Boot</description>
16 <properties>
17 <java.version>17</java.version>
18 </properties>
19 <dependencies>
20 <dependency>
21 <groupId>org.springframework.boot</groupId>
22 <artifactId>spring-boot-starter-data-jpa</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-security</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-web</artifactId>
31 </dependency>
32
33 <dependency>
34 <groupId>org.postgresql</groupId>
35 <artifactId>postgresql</artifactId>
36 <scope>runtime</scope>
37 </dependency>
38 <dependency>
39 <groupId>org.projectlombok</groupId>
40 <artifactId>lombok</artifactId>
41 <optional>true</optional>
42 </dependency>
43 <dependency>
44 <groupId>io.jsonwebtoken</groupId>
45 <artifactId>jjwt-api</artifactId>
46 <version>0.11.5</version>
47 </dependency>
48 <dependency>
49 <groupId>io.jsonwebtoken</groupId>
50 <artifactId>jjwt-impl</artifactId>
51 <version>0.11.5</version>
52 </dependency>
53 <dependency>
54 <groupId>io.jsonwebtoken</groupId>
55 <artifactId>jjwt-jackson</artifactId>
56 <version>0.11.5</version>
57 </dependency>
58 <dependency>
59 <groupId>org.springframework.boot</groupId>
60 <artifactId>spring-boot-starter-test</artifactId>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.springframework.security</groupId>
65 <artifactId>spring-security-test</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.springframework.security</groupId>
70 <artifactId>spring-security-config</artifactId>
71 <version>6.0.2</version>
72 </dependency>
73 <dependency>
74 <groupId>org.springframework.boot</groupId>
75 <artifactId>spring-boot-starter-thymeleaf</artifactId>
76 </dependency>
77
78 <dependency>
79 <groupId>org.springdoc</groupId>
80 <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
81 <version>2.1.0</version>
82 </dependency>
83 <dependency>
84 <groupId>org.springframework.boot</groupId>
85 <artifactId>spring-boot-starter-validation</artifactId>
86 </dependency>
87 </dependencies>
88
89 <build>
90 <plugins>
91 <plugin>
92 <groupId>org.springframework.boot</groupId>
93 <artifactId>spring-boot-maven-plugin</artifactId>
94 <configuration>
95 <image>
96 <builder>paketobuildpacks/builder-jammy-base:latest</builder>
97 </image>
98 <excludes>
99 <exclude>
100 <groupId>org.projectlombok</groupId>
101 <artifactId>lombok</artifactId>
102 </exclude>
103 </excludes>
104 </configuration>
105 </plugin>
106 </plugins>
107 </build>
108
109</project>
Note: See TracBrowser for help on using the repository browser.