source: ReserveNGo-backend/pom.xml@ ef41e8d

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

Changed pom.xml and updated model

  • Property mode set to 100644
File size: 3.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>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>com.h2database</groupId>
62 <artifactId>h2</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>org.springframework.boot</groupId>
67 <artifactId>spring-boot-starter-test</artifactId>
68 <scope>test</scope>
69 </dependency>
70
71 <dependency>
72 <groupId>org.springframework.security</groupId>
73 <artifactId>spring-security-test</artifactId>
74 <scope>test</scope>
75 </dependency>
76 </dependencies>
77
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-compiler-plugin</artifactId>
83 <configuration>
84 <annotationProcessorPaths>
85 <path>
86 <groupId>org.projectlombok</groupId>
87 <artifactId>lombok</artifactId>
88 </path>
89 </annotationProcessorPaths>
90 </configuration>
91 </plugin>
92 <plugin>
93 <groupId>org.springframework.boot</groupId>
94 <artifactId>spring-boot-maven-plugin</artifactId>
95 <configuration>
96 <excludes>
97 <exclude>
98 <groupId>org.projectlombok</groupId>
99 <artifactId>lombok</artifactId>
100 </exclude>
101 </excludes>
102 </configuration>
103 </plugin>
104 </plugins>
105 </build>
106
107</project>
Note: See TracBrowser for help on using the repository browser.