source: ReserveNGo-backend/pom.xml@ cf09deb

Last change on this file since cf09deb was cf09deb, checked in by Nikola Jordanoski <nikolaj_koko@…>, 3 months ago

Added security (not fully implemented)

  • Property mode set to 100644
File size: 3.9 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.4.1</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>mk.ukim.finki.it</groupId>
12 <artifactId>ReserveNGo</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>ReserveNGo</name>
15 <description>ReserveNGo</description>
16 <url/>
17 <licenses>
18 <license/>
19 </licenses>
20 <developers>
21 <developer/>
22 </developers>
23 <scm>
24 <connection/>
25 <developerConnection/>
26 <tag/>
27 <url/>
28 </scm>
29 <properties>
30 <java.version>21</java.version>
31 </properties>
32 <dependencies>
33 <dependency>
34 <groupId>org.projectlombok</groupId>
35 <artifactId>lombok</artifactId>
36 <optional>true</optional>
37 </dependency>
38
39 <dependency>
40 <groupId>org.springframework.boot</groupId>
41 <artifactId>spring-boot-starter-web</artifactId>
42 </dependency>
43
44 <dependency>
45 <groupId>org.springframework.boot</groupId>
46 <artifactId>spring-boot-starter-data-jpa</artifactId>
47 </dependency>
48
49 <dependency>
50 <groupId>org.springframework.boot</groupId>
51 <artifactId>spring-boot-starter-security</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.postgresql</groupId>
56 <artifactId>postgresql</artifactId>
57 <scope>runtime</scope>
58 </dependency>
59
60 <dependency>
61 <groupId>io.jsonwebtoken</groupId>
62 <artifactId>jjwt-api</artifactId>
63 <version>0.11.5</version>
64 </dependency>
65
66 <dependency>
67 <groupId>io.jsonwebtoken</groupId>
68 <artifactId>jjwt-impl</artifactId>
69 <version>0.11.5</version>
70 </dependency>
71
72 <dependency>
73 <groupId>io.jsonwebtoken</groupId>
74 <artifactId>jjwt-jackson</artifactId>
75 <version>0.11.5</version>
76 </dependency>
77
78 <dependency>
79 <groupId>com.h2database</groupId>
80 <artifactId>h2</artifactId>
81 </dependency>
82
83 <dependency>
84 <groupId>org.springframework.boot</groupId>
85 <artifactId>spring-boot-starter-test</artifactId>
86 <scope>test</scope>
87 </dependency>
88
89 <dependency>
90 <groupId>org.springframework.security</groupId>
91 <artifactId>spring-security-test</artifactId>
92 <scope>test</scope>
93 </dependency>
94 </dependencies>
95
96 <build>
97 <plugins>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-compiler-plugin</artifactId>
101 <configuration>
102 <annotationProcessorPaths>
103 <path>
104 <groupId>org.projectlombok</groupId>
105 <artifactId>lombok</artifactId>
106 </path>
107 </annotationProcessorPaths>
108 </configuration>
109 </plugin>
110 <plugin>
111 <groupId>org.springframework.boot</groupId>
112 <artifactId>spring-boot-maven-plugin</artifactId>
113 <configuration>
114 <excludes>
115 <exclude>
116 <groupId>org.projectlombok</groupId>
117 <artifactId>lombok</artifactId>
118 </exclude>
119 </excludes>
120 </configuration>
121 </plugin>
122 </plugins>
123 </build>
124
125</project>
Note: See TracBrowser for help on using the repository browser.